You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30-Days-Of-JavaScript/solutions/day-01/variable.js

16 lines
316 B

let a = "string";
let b = true;
let c = null;
let d = undefined;
let firstName = "Eligijus";
let lastName = "Dzikavicius";
let isMarried = false;
let age = 17;
let live = "Lithuania"
let myAge = 17;
let yourAge = 30;
console.log("I am " + myAge + " years old.");
console.log("You are " + yourAge + " years old.");