Question from the Javascript test

Write a strict function in Javascript

Medium

What is the output ?

const strictFunction = () => {
    "use strict";
    welovedevs = true;
    console.log(welovedevs)
}

strictFunction();
Author: Vincent CotroStatus: PublishedQuestion passed 206 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!