Can someone kindly explain in simple terms what =>{}
means in JavaScript?
I have tried googling it but I kept getting irrelevant responses.
For example:
componentDidMount() {
axios.get("https://jsonplaceholder.typicode.com/posts");
.then(response =>{})
}