Loading...
Please wait a moment
Please wait a moment
Create beautiful code snippets with syntax highlighting for sharing
1// Hello World in JavaScript2function greetUser(name) {3 return `Hello, ${name}! Welcome to JavaScript.`;4}56// Example usage7const userName = "Developer";8console.log(greetUser(userName));910// Arrow function example11const calculateSum = (a, b) => a + b;12console.log(`Sum: ${calculateSum(5, 3)}`);