startit/JS_frecodecamp/variables.js
Geir Okkenhaug Jerstad 06bd2966ca dag 3 commit 1
2024-08-09 10:23:56 +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);