Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 930 Bytes

File metadata and controls

46 lines (28 loc) · 930 Bytes
  • Turn on GitHub Pages
  • complete training
  • Introduce myself to the world
/* current age*/
const myAge = 10;

/*number of early dog years*/
let earlyYears = 2;

earlyYears *= 10.5;

//age minus the early years
let laterYears = myAge - 2;
//multiply and reassign value of laterYears
laterYears *= 4;

//early dog year and late dog years added
let myAgeInDogYears = laterYears + earlyYears;

//my name in lwoer case
let name = "Kevin";
let myName = name.toLowerCase();

console.log(earlyYears);
console.log(laterYears);
console.log(myAgeInDogYears);


console.log('My name is', myName +'. I am',myAge, 'years old in human years which is', myAgeInDogYears, 'years old in dog years');

This is an <h1> header, which is the largest

This is an <h2> header

This is an <h6> header, which is the smallest

sweet

Image of Yaktocat