6 lines
76 B
JavaScript
6 lines
76 B
JavaScript
console.log("Hi there");
|
|
add(4,5);
|
|
|
|
function add(x, y) {
|
|
return x + y;
|
|
} |