An issue with variable declaration

Tell us what’s happening:
Greetings! Isn’t this solution supposed to be accepted, as in some of the previous lessons it was recommended and required to capitalize all const variables?

Your code so far

const MAGIC = () => {
"use strict";
return new Date();
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36.

Challenge: Use Arrow Functions to Write Concise Anonymous Functions

Link to the challenge:

It would work in real life, but the challenge instructions tell you to call it ‘magic’ and variables are case sensitive, so it fails this specific test.

Just to add to what Jack said: I do not think I have ever seen a professional piece of code have all caps for a function variable. I would say this is very uncommon.

The convention of capitalising constants comes from C, and you sometimes see it in other languages. True constants are not the same thing as a JS const variable, though.

You can see an example in the JavaScript Math static properties, such as Math.PI. Because the value of PI is truly constant, capitalising it communicates that expectation to the developer.