In groups of 4, research and answer the following questions. At the end of the warmup, your groups will give a 5 minute presenations on what you have found.
- How do you add code snippets in slack? Give an example.
- How do you view closed pull requests in Github? You can look here
- What is
Infinityin Javascript? - What does Math.abs do in Javascript?
- What does Object.assign() do? Give an example
- What does Math.max.apply() do? Give an example
- In checking of even numbers, why is
number % 2 === 0better than!(number % 2) - When using
Object.keys()on an object, is the order of the keys in the returned arrary guaranteed? - What are literal strings and how do you use them? Give an example.