startit/JS_freecodecamp/variables.js
Geir Okkenhaug Jerstad 2507b3f198 typo
2024-08-09 13:10:08 +02:00

6 lines
154 B
JavaScript

let firstName, lastName;
firstName = 'Geir';
lastName = 'Jerstad';
console.log(firstName, lastName);
const JUL_2024 = '24.12.2024';
console.log(JUL_2024);