I am beginner in JavaScript and I have a question. What is the difference between these two functions.
const one = function(n){
console.log(n)
and this arrow function.
const one = (n) => {
console.log(n)
I know I am storing the value in one
variable. But even then I can't find the difference between these