object oriented javascript | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 3

object oriented javascript

Can you give me a little bit advance javascript program or project that is object-oriented? I already know the basics.

17th Aug 2018, 4:54 PM
Ronalyn Joy SardaƱas
Ronalyn Joy SardaƱas - avatar
2 Respostas
+ 6
var Ronalyn={ name:"Ronalyn", socialMedia:"Sololearn", level:"Silver", gender:"Female" } function Intro(){ console.log("Hi I'm "+this.name) console.log("I'm using "+this.socialMedia) console.log("I have a "+this.level+" badge") } Intro.call(Ronalyn) Output ====== Hi I'm Ronalyn Am using Sololearn I have a silver badge. Explanation ========== The above code creates an object called Ronalyn with properties like Level Name socialMedia It then creates an introduction method that introduces the object. The method is then called on the Ronalyn object, and the output is seen above
17th Aug 2018, 5:05 PM
Dlite
Dlite - avatar
+ 2
Good example Yahiko, don't forget comma on 4th line ā˜ŗ
17th Aug 2018, 5:21 PM
null
null - avatar