Aug 22, 2024
console.log('Hello, World!');
alert('Yo');
<script>
element at the end of the body in index.html for best practice.console.log('Hello, World!');
node index.js
let
(modern practice):
let name;
const
for values that shouldn’t change.const interestRate = 0.3;
let person = { name: 'Mosh', age: 30 };
let selectedColors = ['red', 'blue'];
function greet(name) {
console.log('Hello ' + name);
}