kulka/test2.js

11 lines
202 B
JavaScript
Raw Normal View History

2024-06-25 16:51:25 +02:00
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();