Created
July 18, 2016 09:07
-
-
Save mustafa-qamaruddin/404d140134a3fe821497f1fbfd4fb2c1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pass by reference | |
var arr = [1,2,3]; | |
function append(_arr) | |
{ | |
_arr.push(90); | |
} | |
append(arr); | |
console.log(arr); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment