Sollicitatievraag
Sollicitatiegesprek voor de functie Javascript Engineer
-
SpotifyIn Javascript, how would you make a variable read-only?
Antwoorden op sollicitatievragen
6 antwoorden
declaring a variable using const keyword. This declares a read-only named constant
Anoniem op
There are few solutions, one is to use revealing modular pattern where you return function that only retrieves value of property, and everything is wrapped in closure. Other solution is to use Object.defineProperty where you cane be specific and set write value of object property.
Marko Kovacevic op
There is no "const" keyword back in 2013 when the question was asked.
Anoniem op
var obj = {}; Object.freeze(obj); // Or when defining a property Object.defineProperty(obj, 'key', { writable: false, value: 'read-only variable' });
Before the `const` key word, freeze an object or define the object explicitly as read-only op
This looks so good: bit.ly/faang100
Anoniem op
create the variable using the var keyword, then create a function that returns its value
ilya op