Talk:JavaScript syntax: Difference between revisions

Content deleted Content added
Elias (talk | contribs)
Line 159:
 
No response in several months... I assume everyone agrees, so I dared to change the article. --[[User:Comocomocomocomo|Como]] ([[User talk:Comocomocomocomo|talk]]) 09:26, 3 March 2009 (UTC)
 
: with no doubt
:<code> for(initial; condition; loopstatement) s; </code>
: is indeed syntactic sugar for
:<code> initial; while(condition){ s; loopstatement; } </code>
 
== Reworked Methods and Inheritance ==