February 2nd 2018
Hello! At the ES6 course by Wes Bos we learned about the template string. You use the backticks ``to place variables in strings. Also you can create markup easily, and you can nest them inside each other. Another thing is that ou can also map through an array and render them.
const sentence = My dog ${name} is ${age * 7} years old;
Instead of the string concatenation.
In the CSS grid course we talked about re-ordering of items with the help of the order.
And at the Web Development Bootcamp we continued to work on the color changing game. We had to add a reset button and make it generate a new random set of colors in the divs.
Cheers!