Created
March 20, 2014 07:54
-
-
Save cod3beat/9659182 to your computer and use it in GitHub Desktop.
eskplorasi properti sebuah function
This file contains hidden or 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
function hitung(a, b, c) { | |
// mengetahui berapa jumlah parameter yang dimiliki oleh fungsi ini | |
console.log(hitung.length); // => 3 | |
// mengetahui berapa jumlah argumen yang diberikan ke fungsi ini | |
// ketika ia dijalankan | |
console.log(arguments.length); // => 2 | |
} | |
hitung(1, 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment