Can someone pliz help me

Tell us what’s happening:

Your code so far


const magic = function() {
  "use strict";
  return new Date();
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:64.0) Gecko/20100101 Firefox/64.0.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions/
I have managed to have the other tests marked I just can’t seem to pass one test which is:
function keyword was not used. so can someone pliz help me pass this test?

The point of this one is, start getting familiar with arrow functions.

Can you rewrite the function so that it is an arrow function? Yes, set t to a const but get rid of the keyword function entirely.

okay i get it but how can I write the arrow that I need on my laptop for the arrow function??

The “arrow” people are talking about is no more an arrow than a colon and a closed parentheses is a smiley face. it is simply an equals and a greater than: =>

@ChadKreutzer thank you so much, I thought it was arrow that you had to type. I have passed::relieved:

1 Like