Skip to content

Instantly share code, notes, and snippets.

@mustafa-qamaruddin
Created July 18, 2016 09:02
Show Gist options
  • Save mustafa-qamaruddin/4dd513112c3d11ede94f77a18fdee805 to your computer and use it in GitHub Desktop.
Save mustafa-qamaruddin/4dd513112c3d11ede94f77a18fdee805 to your computer and use it in GitHub Desktop.
// pass by value
var y = 10;
function modify(x)
{
x = 5;
}
modify(y);
console.log(y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment