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
function add(param1, param2) { // membuat fungsi "add" dan parameter ("param1" dan "param2") | |
return param1 + param2; // menghasilkan output dari penjumlahan param 1 dan param 2 | |
} |