Junk

From Wiki2
Revision as of 14:20, 15 October 2015 by Tim (talk | contribs) (Created page with " //Problem 1 //var highValue = 200; ​//var constanVal=2; // ​var myObj = { // highValue: 20, // constantVal: 5, // calculateIt: function (){ // setTimeout (functi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

//Problem 1 //var highValue = 200; ​//var constanVal=2; // ​var myObj = { // highValue: 20, // constantVal: 5, // calculateIt: function (){ // setTimeout (function (){ // console.log(this.constantVal * this.highValue); // }, 2000); // } // } // myObj.calculateIt()//

// Problem 2 // var name = "Michael Jackson"; // ​ // ​function showCelebrityName () { // console.log (name); // } // ​ // ​function showOrdinaryPersonName () { // name = "Johnny Evers"; // console.log (name); // }

// showCelebrityName ();

// showOrdinaryPersonName (); // ​ // showCelebrityName ();