#beginner
Read more stories on Hashnode
Articles with this tag
Sometimes you want to get some data from several different API endpoints. In this example I will be using the Star Wars API to get information about...
map() takes an array manipulates the array and returns a new array of the manipulated data. Using the map() array method in React is the standard for...
Here are some ways of selecting elements. This is not a comprehensive list. Good to keep in your back pocket. Universal Selector Selects everything....
Make an array of an objects Keys. Object.keys - Creates an array of keys from an object passed in. const fruit = { apples: 5, oranges: 10, ...
setInterval() is a window method available to us. It takes two things: A callback function Time in milliseconds setInterval(() =>...