Files
JavaScript-from-Beginner-to…/Chapter 13/Code Samples/ch13_eventloop-sync.js
T
2021-11-25 14:40:42 +01:00

6 lines
76 B
JavaScript

console.log("Hi there");
add(4,5);
function add(x, y) {
return x + y;
}