Techniques for the Utterly Inept

BrilliantBloopers presents: Techniques for the Utterly Inept

			// The code that makes it all possible
			function doTheThing() {
				doNothing();
			}
			function doNothing() {
				doNothingAgain();
			}
			function doNothingAgain() {
				doNothingOnceMore();
			}
		
// Example of a well-structured code snippet var x = 5; x += 1; console.log(x);