Skip to content

Instantly share code, notes, and snippets.

View martinwells's full-sized avatar

Martin Wells martinwells

View GitHub Profile
var another = null;
function test()
{
var str = 'A string I am';
another = str;
}
test();
function test()
{
var myString = 'a string';
}
test();