kulka/test2.js
Chris Talib b3158687ac first
2024-06-25 16:51:25 +02:00

10 lines
202 B
JavaScript

var a = "Hello from the other side";
console.log(a);
function greet() {
var b = "Hello darkness my old friend";
console.log("Returning from function at line 6: ", b);
return b;
}
greet();