funciton prototype code example
Example 1: function prototype javascript
function Person(name) {
this.name = name;
}
Person.prototype.getName = function() {
return this.name;
}
var person = new Person("John Doe");
person.getName() //"John Doe"
Example 2: react prototype function
class Foo extends Component {
// Nota: esta sintaxe é experimental e ainda não padronizada.
handleClick = () => {
console.log('Clicado');
}
render() {
return <button onClick={this.handleClick}>Clique em mim!</button>;
}
}