| 
	     You are here  | 
        gavinhoward.com | ||
| | | | | 
            
              tom.preston-werner.com
             | 
        |
| | | | | ||
| | | | | 
            
              www.mnot.net
             | 
        |
| | | | | One of the most vexing problems that still seems to be facing people when I talk to them about HTTP APIs is how to handle versioning and extensibility - i.e., how they evolve. | |
| | | | | 
            
              hynek.me
             | 
        |
| | | | | Hynek Schlawack: Pythonista, Gopher, blogger, speaker, and YouTuber from Berlin / Germany. | |
| | | | | 
            
              www.hillelwayne.com
             | 
        |
| | | What does this print? x = 1 x --> 0 Think it through, then try it in a browser console! Answer and explanation in the dropdown. Show answer It prints 1. wait wtf At the beginning of a line (and only at the beginning of a line), --> starts a comment. The JavaScript is parsed as x=1; x; // 0 The browser then displays the value of the last expression, which of course is 1. | ||