+ 1
const name =()=>{}
const name =()=>{ } What does this means in JavaScript I don't know this I am newbie to js plz help me
2 Answers
+ 10
const name = () => {}
It'S The new way of saying:
function name() {}
+ 1
Thank you
but "=> " is this pointer to function