Skip to content

Instantly share code, notes, and snippets.

@maartenl
Last active December 10, 2015 23:59
Show Gist options
  • Save maartenl/4513391 to your computer and use it in GitHub Desktop.
Save maartenl/4513391 to your computer and use it in GitHub Desktop.
JavaScript Doesn't Support Allman Style
function helloWorld()
{
alert("Hello, world.");
return
{
world: "Hello"
}
}
result = helloWorld();
alert(result);
alert(result.world);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment