javascript

#programming/javascript#programming#web

JavaScript

JavaScript is the language of the web. Runs in the browser and on the server (Node.js).

const greet = (name) => `Hello, ${name}!`;
console.log(greet("World"));

See Also