Day7 of 100DaysOfJavaScript

KoichiArai - Jul 15 - - Dev Community

I have accomplished watching the video.

What I did

What I learned

  • Math.random and Math.floor
  • Concise format of defining if statement
if (hoge === hogehoge) {
  return true;
} else {
  return false;
}
// concise format below
return hoge === hogehoge ? true : false;
Enter fullscreen mode Exit fullscreen mode
  • object.freeze()
  • Arrow function
  • .filter()
  • .map()
  • Rest operator
  • Spread operator
  • Destructring
  • Template literal

I will start to learn HTML and CSS tomorrow.

. . . . . . . . . . .
Terabox Video Player