Skip to content

Instantly share code, notes, and snippets.

@laiso
Created January 21, 2010 12:27
Show Gist options
  • Save laiso/282761 to your computer and use it in GitHub Desktop.
Save laiso/282761 to your computer and use it in GitHub Desktop.
<html>
<head>
<script type="text/javascript" charset="utf-8">
var someValue = "Hello";
var somevalue = "World";
function helloWorld(say){
alert(say);
}
function helloworld(say){
alert(say+say);
}
helloWorld(someValue+somevalue);//HelloWorld
helloworld(someValue+somevalue);//HelloWorldHelloWorld
</script>
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment