<script src="main.js"></script>
<script>
console.log("Hello world");
</script>
// Single line comment
/*
Multi-line
comment
*/
console.log("Hello world");
let a = 'hello world';
// Older syntax
var a = 'hello world';
const a = 'hello world';
let a, b;
// Older syntax
var a, b;
let a = 'hello', b = 'world';
// Older syntax
var a = 'hello', b = 'world';