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.
34 lines
678 B
34 lines
678 B
// comment make code more readable
|
|
// welcome js world
|
|
/*comments can make code readable,
|
|
easy to reuse and informative*/
|
|
|
|
let first = 'javaScript';
|
|
let strongLang = true;
|
|
let undf;
|
|
let random = null;
|
|
|
|
// four var without value
|
|
let four;
|
|
let three;
|
|
let tow ;
|
|
let one ;
|
|
|
|
// four var with vales
|
|
let hour = 6;
|
|
let story= 'there is a person that will achieve his goals ';
|
|
let towHundred = 200;
|
|
let onePerson = 'molto' ;
|
|
|
|
// four var for me
|
|
|
|
let first_name = 'molto';
|
|
let last_name = 'michele'
|
|
let marital_status = false;
|
|
let count = 'brazil';let age =25;
|
|
|
|
// last two var
|
|
let myAge = 25;
|
|
let yourAge = 35;
|
|
console.log(`hi i am ${myAge} years old and you are ${yourAge} years old `)
|