WPM
100
CPM
100
Errors
0
Time
15Min
Accuracy
100%
Start Javascript code typing Practice. Javascript simple basic programs, Dates in Javascript, javascript Objects define property methods, javascript Object Creation and Array in javascript.Click on the area below to start typing.

S.No.Paragraph : Practice repeatedly whatever you would like most for full fifteen minutes Lessionsclick to Practice
1const people = { printIntroduction: function () { console.log('My name is ${this.name}. Am I human? ${this.isHuman}'); } }; const me = Object.create(people); me.name = "Marry"; // "name" is a property set on "me", but not on "person" me.isHuman = true; // inherited properties can be overwritten me.printIntroduction();1.3 javascript object creation