Skip to content

Instantly share code, notes, and snippets.

@koalicioous
Created September 26, 2021 02:14
Show Gist options
  • Save koalicioous/6dd2008b092dbd53f58bcc411df59708 to your computer and use it in GitHub Desktop.
Save koalicioous/6dd2008b092dbd53f58bcc411df59708 to your computer and use it in GitHub Desktop.
function cetakAngka(inputValue = 123) {
console.log(inputValue)
};
cetakAngka(456)
//Hasil: 456
cetakAngka()
//Hasil: 123
cetakAngka('angka')
//Error: Argument of type 'angka' is not assignable to parameter of type 'number | undefined'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment