DEV Community

KoichiArai
KoichiArai

Posted on

Day7 of 100DaysOfJavaScript

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.

Top comments (0)