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.
25 lines
473 B
25 lines
473 B
// Comments can make code readable
|
|
// Welcome to 30DaysOfJavaScript
|
|
|
|
/*
|
|
commentts can make code readable, easy to reuse and informative
|
|
*/
|
|
|
|
// let first = "Ashley";
|
|
// let last = "Casimir";
|
|
// let numbers = 34;
|
|
// let inLove = true;
|
|
// let country = "USA";
|
|
|
|
let first = "Ashley",
|
|
last = "Casimir",
|
|
numbers = 34,
|
|
inLove = true,
|
|
home = "USA";
|
|
|
|
let myAge = 34,
|
|
yourAge = 27;
|
|
|
|
console.log(`I am ${myAge} years old`);
|
|
console.log(`you are ${yourAge} years old`);
|