Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

sureshalagarsamy/javascript-prototype

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
3 Commits
 
 

Repository files navigation

Prototype in JavaScript

What is Prototype in JavaScript?

How to create prototype in JavaScript?


All the JavaScript objects have an object and its property called prototype and its used to add the custom functions and property.

The example looks like,

var employee = function () {
   //This is a constructor  function.
}

//Crate the instance of above constructor  function and assign in a variable
var empInstance = new employee();
empInstance.department = "IT";

console.log(empInstance.department);//The output of above is IT.

//The example with prototype as given below.
var employee = function () 
{ 
   //This is a constructor  function.
}

employee.prototype.department = "IT";//Now, for every instance employee will have a department.

//Crate the instance of above constructor function and assign in a variable
var empInstance = new employee();
empInstance.department = "HR";

console.log(empInstance.department);//The output of above is HR not IT.

Releases

No releases published

Packages

 
 
 

Contributors

Morty Proxy This is a proxified and sanitized view of the page, visit original site.