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-03/main.js

102 lines
2.8 KiB

<<<<<<< HEAD
let firstName = "Eligijus";
let lastName = "Dzikavicius";
let country = "Lithuania";
let city = "Kupiskis";
let age = "17";
let isMarried = false;
let year = "2023";
console.log(parseInt("10"));
console.log(parseInt("9.8"));
let truthy1 = 12; // truthy
let truthy2 = "string"; // truthy
let truthy3 = true; // truthy
let falsy1 = 0; // falsy
let falsy2 = ""; // falsy
let falsy3 = null; // falsy
console.log(4 > 3); // true
console.log(4 >= 3); // true
console.log(4 < 3); // false
console.log(4 <= 3); // false
console.log(4 == 4); // true
console.log(4 === 4); // true
console.log(4 != 4); // false
console.log(4 !== 4); // false
console.log(4 != '4'); // false
console.log(4 == '4'); // true
console.log(4 === '4'); // false
console.log("python".length != "jargon".length); // false
// All correct !
const now = new Date();
const currentYear = now.getFullYear();
const month = now.getMonth() + 1;
const date = now.getDate();
const day = now.getDay() + 1;
const hours = now.getHours();
const minutes = now.getMinutes();
const seconds = now.getSeconds();
const allTime = now.getTime();
console.log(`The current year is ${currentYear}`);
console.log(`The current month is ${month}`);
console.log(`The current date is ${date}`);
console.log(`The current day of the week is ${day}`);
console.log(`The current time is ${hours}:${minutes}:${seconds}`);
console.log(`The amount of seconds passed since Jan 1, 1970 is ${allTime}`);
=======
let firstName = "Eligijus"
let lastName = "Dzikavicius"
let country = "Lithuania"
let city = "Kupiskis"
let age = "17"
let isMarried = false
let year = "2023"
console.log(parseInt("10"))
console.log(parseInt("9.8"))
let truthy1 = 12 // truthy
let truthy2 = "string" // truthy
let truthy3 = true // truthy
let falsy1 = 0 // falsy
let falsy2 = "" // falsy
let falsy3 = null // falsy
console.log(4 > 3) // true
console.log(4 >= 3) // true
console.log(4 < 3) // false
console.log(4 <= 3) // false
console.log(4 == 4) // true
console.log(4 === 4) // true
console.log(4 != 4) // false
console.log(4 !== 4) // false
console.log(4 != '4') // false
console.log(4 == '4') // true
console.log(4 === '4') // false
console.log("python".length != "jargon".length) // false
// All correct !
const now = new Date()
const currentYear = now.getFullYear()
const month = now.getMonth() + 1
const date = now.getDate()
const day = now.getDay() + 1
const hours = now.getHours()
const minutes = now.getMinutes()
const seconds = now.getSeconds()
const allTime = now.getTime()
console.log(`The current year is ${currentYear}`)
console.log(`The current month is ${month}`)
console.log(`The current date is ${date}`)
console.log(`The current day of the week is ${day}`)
console.log(`The current time is ${hours}:${minutes}:${seconds}`)
console.log(`The amount of seconds passed since Jan 1, 1970 is ${allTime}`)
>>>>>>> 8d7537174874adc1103af7dd252396640bd70c73