// Welcome to the JavaScript Playground!
// Write your JavaScript code here and click "Run" to execute it.
console.log('Hello, JavaScript!');
// Example: Function to add two numbers
function add(a, b) {
return a + b;
}
console.log('5 + 3 =', add(5, 3));
// Try it yourself!