Skip to content

Instantly share code, notes, and snippets.

@cod3beat
Created March 20, 2014 07:54
Show Gist options
  • Save cod3beat/9659182 to your computer and use it in GitHub Desktop.
Save cod3beat/9659182 to your computer and use it in GitHub Desktop.
eskplorasi properti sebuah function
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