Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

JSON: remember you can use a value that comes later

var thing = {first: function(){console.log("first")}, second: function(){this.third()}, third: function(){console.log("third")}  }
thing.second();
/*second can use third even though third comes later*/
 
PREVIOUS NEXT
Tagged: #remember
ADD COMMENT
Topic
Name
9+7 =