Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function Animal (name, age) {
- this.name = name;
- this.age = age;
- this.speak = function(){
- console.log(`hello ${this.name}`)
- }
- }
- cholo = new Animal("cholito", 5)
- cholo.speak()
Advertisement
Add Comment
Please, Sign In to add comment