Prototype Better Explained | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

Prototype Better Explained

I have recently seen the coding train make a video of which he uses ".prototype". I searched through the video and he has no attribute, method or object called prototype. After some research I realised it is built in in Javascript. So far NO tutorial has helped, Can someone explain it better please? I have made a code playing around with it. Keep in mind I have NO idea what I'm doing https://code.sololearn.com/W3P3J6RU4gA1/?ref=app

9th Jun 2019, 11:58 AM
Clueless Coder
Clueless Coder - avatar
8 Answers
+ 9
https://code.sololearn.com/WJErVWqbo7SO/?ref=app
9th Jun 2019, 1:07 PM
Calviղ
Calviղ - avatar
+ 7
Cont from previous msg... We can build getEvenNumbersOnly prototype for the array. To build the prototype function for array, we would use Array.prototype function, in the function, we use 'this' to refer the the calling array. Array.prototype.getEvenNumbersOnly = function() { var res = []; for(var i=0;i<this.length;i++) { if(this[i]%2===0) res.push(this[i]); } return res; } // For calliing the prototype from the array, var nums = [1,2,3,4,5,6]; var evens = nums.getEvenNumbersOnly(); // Output: [2,4,6]
9th Jun 2019, 12:54 PM
Calviղ
Calviղ - avatar
+ 7
🍹_JavaScripter_🍭{[#KeepCoding]} Objects created by object-literal do not have the prototype function as a property. You need to create an object type by using an object constructor function. https://www.w3schools.com/js/js_object_prototypes.asp https://code.sololearn.com/WY9Do63zvMLO/#js
30th Jun 2019, 7:22 PM
ODLNT
ODLNT - avatar
+ 5
☕__JavaScripter__💐 "Simply put, every function in JavaScript has a prototype property that references an object. " -Tyler McGinnis https://tylermcginnis.com/beginners-guide-to-javascript-prototype/ Pretty easy to follow. Suggestion: go to 9:13 min mark in video listen to the definition. Then go to the beginning of video.
9th Jun 2019, 12:28 PM
ODLNT
ODLNT - avatar
+ 5
I learnt and understand JavaScript prototype from examples. For example: We need to build a function that only get the even numbers from an array. We would likely write below function function getEvenNumbersOnly (arr) { var res = []; for(var i=0;i<arr.length;i++) { if(arr[i]%2===0) res.push(arr[i]); } return res; } var nums = [1,2,3,4,5,6]; var evens = getEvenNumbersOnly (nums); // Output: [2,4,6] cont.....
9th Jun 2019, 12:47 PM
Calviղ
Calviղ - avatar
+ 2
https://code.sololearn.com/WL94G9kee3TF/?ref=app Can someone explain why this won't work?
30th Jun 2019, 4:40 PM
Clueless Coder
Clueless Coder - avatar
- 2
vr c
10th Jun 2019, 8:55 AM
Jakhongir Nishanbaev
Jakhongir Nishanbaev - avatar
- 4
How are you
9th Jun 2019, 10:02 PM
Abubakar Maikudi