میتونین با حل این سوالات و سپس مشاهده پاسخ صحیح، سطح دانش جاواسکریپت خودتون رو ارزیابی کنین و برای مصاحبههای شغلی پیش رو آماده بشین 💪.
اگه خوشتون اومد به گیتهابمون ⭐ بدین. اگر هم قصد مشارکت داشتید خیلی خوشحال میشیم :)
var car = new Vehicle("Honda", "white", "2010", "UK");
console.log(car);
function Vehicle(model, color, year, country) {
this.model = model;
this.color = color;
this.year = year;
this.country = country;
}
- 1: Undefined
- 2: ReferenceError
- 3: null
- 4: {model: "Honda", color: "white", year: "2010", country: "UK"}
🤔 مشاهده پاسخ
The function declarations are hoisted similar to any variables. So the placement for Vehicle
function declaration doesn't make any difference.
function foo() {
let x = y = 0;
x++;
y++;
return x;
}
console.log(foo(), typeof x, typeof y);
- 1: 1, undefined and undefined
- 2: ReferenceError: X is not defined
- 3: 1, undefined and number
- 4: 1, number and number
🤔 مشاهده پاسخ
Of course the return value of foo()
is 1 due to the increment operator. But the statement let x = y = 0
declares a local variable x. Whereas y declared as a global variable accidentally. This statement is equivalent to,
let x;
window.y = 0;
x = window.y;
Since the block scoped variable x is undefined outside of the function, the type will be undefined too. Whereas the global variable y
is available outside the function, the value is 0 and type is number.
function main(){
console.log('A');
setTimeout(
function print(){ console.log('B'); }
,0);
console.log('C');
}
main();
- 1: A, B and C
- 2: B, A and C
- 3: A and C
- 4: A, C and B
🤔 مشاهده پاسخ
The statements order is based on the event loop mechanism. The order of statements follows the below order,
- At first, the main function is pushed to the stack.
- Then the browser pushes the fist statement of the main function( i.e, A's console.log) to the stack, executing and popping out immediately.
- But
setTimeout
statement moved to Browser API to apply the delay for callback. - In the meantime, C's console.log added to stack, executed and popped out.
- The callback of
setTimeout
moved from Browser API to message queue. - The
main
function popped out from stack because there are no statements to execute - The callback moved from message queue to the stack since the stack is empty.
- The console.log for B is added to the stack and display on the console.
console.log(0.1 + 0.2 === 0.3);
- 1: false
- 2: true
🤔 مشاهده پاسخ
This is due to the float point math problem. Since the floating point numbers are encoded in binary format, the addition operations on them lead to rounding errors. Hence, the comparison of floating points doesn't give expected results. You can find more details about the explanation here 0.30000000000000004.com/
var y = 1;
if (function f(){}) {
y += typeof f;
}
console.log(y);
- 1: 1function
- 2: 1object
- 3: ReferenceError
- 4: 1undefined
🤔 مشاهده پاسخ
The main points in the above code snippets are,
- You can see function expression instead function declaration inside if statement. So it always returns true.
- Since it is not declared(or assigned) anywhere, f is undefined and typeof f is undefined too.
In other words, it is same as
var y = 1;
if ('foo') {
y += typeof f;
}
console.log(y);
Note: It returns 1object for MS Edge browser
function foo() {
return
{
message: "Hello World"
};
}
console.log(foo());
- 1: Hello World
- 2: Object {message: "Hello World"}
- 3: Undefined
- 4: SyntaxError
🤔 مشاهده پاسخ
This is a semicolon issue. Normally semicolons are optional in JavaScript. So if there are any statements(in this case, return) missing semicolon, it is automatically inserted immediately. Hence, the function returned as undefined.
Whereas if the opening curly brace is along with the return keyword then the function is going to be returned as expected.
function foo() {
return {
message: "Hello World"
};
}
console.log(foo()); // {message: "Hello World"}
var myChars = ['a', 'b', 'c', 'd']
delete myChars[0];
console.log(myChars);
console.log(myChars[0]);
console.log(myChars.length);
- 1: [empty, 'b', 'c', 'd'], empty, 3
- 2: [null, 'b', 'c', 'd'], empty, 3
- 3: [empty, 'b', 'c', 'd'], undefined, 4
- 4: [null, 'b', 'c', 'd'], undefined, 4
🤔 مشاهده پاسخ
The delete
operator will delete the object property but it will not reindex the array or change its length. So the number or elements or length of the array won't be changed.
If you try to print myChars then you can observe that it doesn't set an undefined value, rather the property is removed from the array. The newer versions of Chrome use empty
instead of undefined
to make the difference a bit clearer.
var array1 = new Array(3);
console.log(array1);
var array2 = [];
array2[2] = 100;
console.log(array2);
var array3 = [,,,];
console.log(array3);
- 1: [undefined × 3], [undefined × 2, 100], [undefined × 3]
- 2: [empty × 3], [empty × 2, 100], [empty × 3]
- 3: [null × 3], [null × 2, 100], [null × 3]
- 4: [], [100], []
🤔 مشاهده پاسخ
The latest chrome versions display sparse array
(they are filled with holes) using this empty x n notation. Whereas the older versions have undefined x n notation.
Note: The latest version of FF displays n empty slots
notation.
const obj = {
prop1: function() { return 0 },
prop2() { return 1 },
['prop' + 3]() { return 2 }
}
console.log(obj.prop1());
console.log(obj.prop2());
console.log(obj.prop3());
- 1: 0, 1, 2
- 2: 0, { return 1 }, 2
- 3: 0, { return 1 }, { return 2 }
- 4: 0, 1, undefined
🤔 مشاهده پاسخ
ES6 provides method definitions and property shorthands for objects. So both prop2 and prop3 are treated as regular function values.
console.log(1 < 2 < 3);
console.log(3 > 2 > 1);
- 1: true, true
- 2: true, false
- 3: SyntaxError, SyntaxError,
- 4: false, false
🤔 مشاهده پاسخ
The important point is that if the statement contains the same operators(e.g, < or >) then it can be evaluated from left to right. The first statement follows the below order,
- console.log(1 < 2 < 3);
- console.log(true < 3);
- console.log(1 < 3); // True converted as
1
during comparison - True
Whereas the second statement follows the below order,
- console.log(3 > 2 > 1);
- console.log(true > 1);
- console.log(1 > 1); // False converted as
0
during comparison - False
function printNumbers(first, second, first) {
console.log(first, second, first);
}
printNumbers(1, 2, 3);
- 1: 1, 2, 3
- 2: 3, 2, 3
- 3: SyntaxError: Duplicate parameter name not allowed in this context
- 4: 1, 2, 1
🤔 مشاهده پاسخ
In non-strict mode, the regular JavaScript functions allow duplicate named parameters. The above code snippet has duplicate parameters on 1st and 3rd parameters. The value of the first parameter is mapped to the third argument which is passed to the function. Hence, the 3rd argument overrides the first parameter.
Note: In strict mode, duplicate parameters will throw a Syntax Error.
const printNumbersArrow = (first, second, first) => {
console.log(first, second, first);
}
printNumbersArrow(1, 2, 3);
- 1: 1, 2, 3
- 2: 3, 2, 3
- 3: SyntaxError: Duplicate parameter name not allowed in this context
- 4: 1, 2, 1
🤔 مشاهده پاسخ
Unlike regular functions, the arrow functions doesn't not allow duplicate parameters in either strict or non-strict mode. So you can see SyntaxError
in the console.
const arrowFunc = () => arguments.length;
console.log(arrowFunc(1, 2, 3));
- 1: ReferenceError: arguments is not defined
- 2: 3
- 3: undefined
- 4: null
🤔 مشاهده پاسخ
Arrow functions do not have an arguments, super, this, or new.target
bindings. So any reference to arguments
variable tries to resolve to a binding in a lexically enclosing environment. In this case, the arguments variable is not defined outside of the arrow function. Hence, you will receive a reference error.
Where as the normal function provides the number of arguments passed to the function
const func = function () {
return arguments.length;
}
console.log(func(1, 2, 3));
But If you still want to use an arrow function then rest operator on arguments provides the expected arguments
const arrowFunc = (...args) => args.length;
console.log(arrowFunc(1, 2, 3));
console.log( String.prototype.trimLeft.name === 'trimLeft' );
console.log( String.prototype.trimLeft.name === 'trimStart' );
- 1: True, False
- 2: False, True
🤔 مشاهده پاسخ
In order to be consistent with functions like String.prototype.padStart
, the standard method name for trimming the whitespaces is considered as trimStart
. Due to web web compatibility reasons, the old method name 'trimLeft' still acts as an alias for 'trimStart'. Hence, the prototype for 'trimLeft' is always 'trimStart'
console.log(Math.max());
- 1: undefined
- 2: Infinity
- 3: 0
- 4: -Infinity
🤔 مشاهده پاسخ
-Infinity is the initial comparant because almost every other value is bigger. So when no arguments are provided, -Infinity is going to be returned. Note: Zero number of arguments is a valid case.
console.log(10 == [10]);
console.log(10 == [[[[[[[10]]]]]]]);
- 1: True, True
- 2: True, False
- 3: False, False
- 4: False, True
🤔 مشاهده پاسخ
As per the comparison algorithm in the ECMAScript specification(ECMA-262), the above expression converted into JS as below
10 === Number([10].valueOf().toString()) // 10
console.log(10 + '10');
console.log(10 - '10');
- 1: 20, 0
- 2: 1010, 0
- 3: 1010, 10-10
- 4: NaN, NaN
🤔 مشاهده پاسخ
The concatenation operator(+) is applicable for both number and string types. So if any operand is string type then both operands concatenated as strings. Whereas subtract(-) operator tries to convert the operands as number type.
console.log([0] == false);
if([0]) {
console.log("I'm True");
} else {
console.log("I'm False");
}
- 1: True, I'm True
- 2: True, I'm False
- 3: False, I'm True
- 4: False, I'm False
🤔 مشاهده پاسخ
In comparison operators, the expression [0]
converted to Number([0].valueOf().toString()) which is resolved to false. Whereas [0]
just becomes a truthy value without any conversion because there is no comparison operator.
console.log([1, 2] + [3, 4]);
- 1: [1,2,3,4]
- 2: [1,2][3,4]
- 3: SyntaxError
- 4: 1,23,4
🤔 مشاهده پاسخ
The + operator is not meant or defined for arrays. So it converts arrays into strings and concatenates them.
const numbers = new Set([1, 1, 2, 3, 4]);
console.log(numbers);
const browser = new Set('Firefox);
console.log(browser);
- 1: {1, 2, 3, 4}, {"F", "i", "r", "e", "f", "o", "x"}
- 2: {1, 2, 3, 4}, {"F", "i", "r", "e", "o", "x"}
- 3: [1, 2, 3, 4], ["F", "i", "r", "e", "o", "x"]
- 4: {1, 1, 2, 3, 4}, {"F", "i", "r", "e", "f", "o", "x"}
🤔 مشاهده پاسخ
Since Set
object is a collection of unique values, it won't allow duplicate values in the collection. At the same time, it is case sensitive data structure.
console.log(NaN === NaN);
- 1: True
- 2: False
🤔 مشاهده پاسخ
JavaScript follows IEEE 754 spec standards. As per this spec, NaNs are never equal for floating-point numbers.
let numbers = [1, 2, 3, 4, NaN];
console.log(numbers.indexOf(NaN));
- 1: 4
- 2: NaN
- 3: SyntaxError
- 4: -1
🤔 مشاهده پاسخ
The indexOf
uses strict equality operator(===) internally and NaN === NaN
evaluates to false. Since indexOf won't be able to find NaN inside an array, it returns -1 always.
But you can use Array.prototype.findIndex
method to find out the index of NaN in an array or You can use Array.prototype.includes
to check if NaN is present in an array or not.
let numbers = [1, 2, 3, 4, NaN];
console.log(numbers.findIndex(Number.isNaN)); // 4
console.log(numbers.includes(Number.isNaN)); // true
let [a, ...b,] = [1, 2, 3, 4, 5];
console.log(a, b);
- 1: 1, [2, 3, 4, 5]
- 2: 1, {2, 3, 4, 5}
- 3: SyntaxError
- 4: 1, [2, 3, 4]
🤔 مشاهده پاسخ
When using rest parameters, trailing commas are not allowed and will throw a SyntaxError. If you remove the trailing comma then it displays 1st answer
let [a, ...b,] = [1, 2, 3, 4, 5];
console.log(a, b); // 1, [2, 3, 4, 5]
async function func() {
return 10;
}
console.log(func());
- 1: Promise {: 10}
- 2: 10
- 3: SyntaxError
- 4: Promise {: 10}
🤔 مشاهده پاسخ
Async functions always return a promise. But even if the return value of an async function is not explicitly a promise, it will be implicitly wrapped in a promise. The above async function is equivalent to below expression,
function func() {
return Promise.resolve(10)
}
async function func() {
await 10;
}
console.log(func());
- 1: Promise {: 10}
- 2: 10
- 3: SyntaxError
- 4: Promise {: undefined}
🤔 مشاهده پاسخ
The await expression returns value 10 with promise resolution and the code after each await expression can be treated as existing in a .then
callback. In this case, there is no return expression at the end of the function. Hence, the default return value of undefined
is returned as the resolution of the promise. The above async function is equivalent to below expression,
function func() {
return Promise.resolve(10).then(() => undefined)
}
function delay() {
return new Promise(resolve => setTimeout(resolve, 2000));
}
async function delayedLog(item) {
await delay();
console.log(item);
}
async function processArray(array) {
array.forEach(item => {
await delayedLog(item);
})
}
processArray([1, 2, 3, 4]);
- 1: SyntaxError
- 2: 1, 2, 3, 4
- 3: 4, 4, 4, 4
- 4: 4, 3, 2, 1
🤔 مشاهده پاسخ
Even though “processArray” is an async function, the anonymous function that we use for forEach
is synchronous. If you use await inside a synchronous function then it throws a syntax error.
function delay() {
return new Promise(resolve => setTimeout(resolve, 2000));
}
async function delayedLog(item) {
await delay();
console.log(item);
}
async function process(array) {
array.forEach(async (item) => {
await delayedLog(i);
});
console.log('Process completed!');
}
process([1, 2, 3, 5]);
- 1: 1 2 3 5 and Process completed!
- 2: 5 5 5 5 and Process completed!
- 3: Process completed! and 5 5 5 5
- 4: Process completed! and 1 2 3 5
🤔 مشاهده پاسخ
The forEach method will not wait until all items are finished but it just runs the tasks and goes next. Hence, the last statement is displayed first followed by a sequence of promise resolutions.
But you control the array sequence using for..of loop,
async function processArray(array) {
for (const item of array) {
await delayedLog(item);
}
console.log('Process completed!');
}
var set = new Set();
set.add("+0").add("-0").add(NaN).add(undefined).add(NaN);;
console.log(set);
- 1: Set(4) {"+0", "-0", NaN, undefined}
- 2: Set(3) {"+0", NaN, undefined}
- 3: Set(5) {"+0", "-0", NaN, undefined, NaN}
- 4: Set(4) {"+0", NaN, undefined, NaN}
🤔 مشاهده پاسخ
Set has few exceptions from equality check,
- All NaN values are equal
- Both +0 and -0 considered as different values
const sym1 = Symbol('one');
const sym2 = Symbol('one');
const sym3 = Symbol.for('two');
const sym4 = Symbol.for('two');
console.log(sym1 === sym2, sym3 === sym4);
- 1: true, true
- 2: true, false
- 3: false, true
- 4: false, false
🤔 مشاهده پاسخ
Symbol follows below conventions,
- Every symbol value returned from Symbol() is unique irrespective of the optional string.
Symbol.for()
function creates a symbol in a global symbol registry list. But it doesn't necessarily create a new symbol on every call, it checks first if a symbol with the given key is already present in the registry and returns the symbol if it is found. Otherwise a new symbol created in the registry.
Note: The symbol description is just useful for debugging purposes.
const sym1 = new Symbol('one');
console.log(sym1);
- 1: SyntaxError
- 2: one
- 3: Symbol('one')
- 4: Symbol
🤔 مشاهده پاسخ
Symbol
is a just a standard function and not an object constructor(unlike other primitives new Boolean, new String and new Number). So if you try to call it with the new operator will result in a TypeError
let myNumber = 100;
let myString = '100';
if (!typeof myNumber === "string") {
console.log("It is not a string!");
} else {
console.log("It is a string!");
}
if (!typeof myString === "number"){
console.log("It is not a number!")
} else {
console.log("It is a number!");
}
- 1: SyntaxError
- 2: It is not a string!, It is not a number!
- 3: It is not a string!, It is a number!
- 4: It is a string!, It is a number!
🤔 مشاهده پاسخ
The return value of typeof myNumber (OR) typeof myString
is always the truthy value (either "number" or "string"). Since ! operator converts the value to a boolean value, the value of both !typeof myNumber or !typeof myString
is always false. Hence the if condition fails and control goes to else block.
console.log(JSON.stringify({ myArray: ['one', undefined, function(){}, Symbol('')] }));
console.log(JSON.stringify({ [Symbol.for('one')]: 'one' }, [Symbol.for('one')]));
- 1: {"myArray":['one', undefined, {}, Symbol]}, {}
- 2: {"myArray":['one', null,null,null]}, {}
- 3: {"myArray":['one', null,null,null]}, "{ [Symbol.for('one')]: 'one' }, [Symbol.for('one')]"
- 4: {"myArray":['one', undefined, function(){}, Symbol('')]}, {}
🤔 مشاهده پاسخ
The symbols has below constraints,
- The undefined, Functions, and Symbols are not valid JSON values. So those values are either omitted (in an object) or changed to null (in an array). Hence, it returns null values for the value array.
- All Symbol-keyed properties will be completely ignored. Hence it returns an empty object({}).
class A {
constructor() {
console.log(new.target.name)
}
}
class B extends A { constructor() { super() } }
new A();
new B();
- 1: A, A
- 2: A, B
🤔 مشاهده پاسخ
Using constructors, new.target
refers to the constructor (points to the class definition of class which is initialized) that was directly invoked by new. This also applies to the case if the constructor is in a parent class and was delegated from a child constructor.
const [x, ...y,] = [1, 2, 3, 4];
console.log(x, y);
- 1: 1, [2, 3, 4]
- 2: 1, [2, 3]
- 3: 1, [2]
- 4: SyntaxError
🤔 مشاهده پاسخ
It throws a syntax error because the rest element should not have a trailing comma. You should always consider using a rest operator as the last element.
const {a: x = 10, b: y = 20} = {a: 30};
console.log(x);
console.log(y);
- 1: 30, 20
- 2: 10, 20
- 3: 10, undefined
- 4: 30, undefined
🤔 مشاهده پاسخ
The object property follows below rules,
- The object properties can be retrieved and assigned to a variable with a different name
- The property assigned a default value when the retrieved value is
undefined
function area({length = 10, width = 20}) {
console.log(length*width);
}
area();
- 1: 200
- 2: Error
- 3: undefined
- 4: 0
🤔 مشاهده پاسخ
If you leave out the right-hand side assignment for the destructuring object, the function will look for at least one argument to be supplied when invoked. Otherwise you will receive an error Error: Cannot read property 'length' of undefined
as mentioned above.
You can avoid the error with either of the below changes,
- Pass at least an empty object:
function area({length = 10, width = 20}) {
console.log(length*width);
}
area({});
- Assign default empty object:
function area({length = 10, width = 20} = {}) {
console.log(length*width);
}
area();
const props = [
{ id: 1, name: 'John'},
{ id: 2, name: 'Jack'},
{ id: 3, name: 'Tom'}
];
const [,, { name }] = props;
console.log(name);
- 1: Tom
- 2: Error
- 3: undefined
- 4: John
🤔 مشاهده پاسخ
It is possible to combine Array and Object destructuring. In this case, the third element in the array props accessed first followed by name property in the object.
function checkType(num = 1) {
console.log(typeof num);
}
checkType();
checkType(undefined);
checkType('');
checkType(null);
- 1: number, undefined, string, object
- 2: undefined, undefined, string, object
- 3: number, number, string, object
- 4: number, number, number, number
🤔 مشاهده پاسخ
If the function argument is set implicitly(not passing argument) or explicitly to undefined, the value of the argument is the default parameter. Whereas for other falsy values('' or null), the value of the argument is passed as a parameter.
Hence, the result of function calls categorized as below,
- The first two function calls logs number type since the type of default value is number
- The type of '' and null values are string and object type respectively.
function add(item, items = []) {
items.push(item);
return items;
}
console.log(add('Orange'));
console.log(add('Apple'));
- 1: ['Orange'], ['Orange', 'Apple']
- 2: ['Orange'], ['Apple']
🤔 مشاهده پاسخ
Since the default argument is evaluated at call time, a new object is created each time the function is called. So in this case, the new array is created and an element pushed to the default empty array.
function greet(greeting, name, message = greeting + ' ' + name) {
console.log([name, greeting, message]);
}
greet('Hello', 'John');
greet('Hello', 'John', 'Good morning!');
- 1: SyntaxError
- 2: ['Hello', 'John', 'Hello John'], ['Hello', 'John', 'Good morning!']
🤔 مشاهده پاسخ
Since parameters defined earlier are available to later default parameters, this code snippet doesn't throw any error.
function outer(f = inner()) {
function inner() { return 'Inner' }
}
outer();
- 1: ReferenceError
- 2: Inner
🤔 مشاهده پاسخ
The functions and variables declared in the function body cannot be referred from default value parameter initializers. If you still try to access, it throws a run-time ReferenceError(i.e, inner
is not defined).
function myFun(x, y, ...manyMoreArgs) {
console.log(manyMoreArgs)
}
myFun(1, 2, 3, 4, 5);
myFun(1, 2);
- 1: [3, 4, 5], undefined
- 2: SyntaxError
- 3: [3, 4, 5], []
- 4: [3, 4, 5], [undefined]
🤔 مشاهده پاسخ
The rest parameter is used to hold the remaining parameters of a function and it becomes an empty array if the argument is not provided.
const obj = {'key': 'value'};
const array = [...obj];
console.log(array);
- 1: ['key', 'value']
- 2: TypeError
- 3: []
- 4: ['key']
🤔 مشاهده پاسخ
Spread syntax can be applied only to iterable objects. By default, Objects are not iterable, but they become iterable when used in an Array, or with iterating functions such as map(), reduce(), and assign()
. If you still try to do it, it still throws TypeError: obj is not iterable
.
function* myGenFunc() {
yield 1;
yield 2;
yield 3;
}
var myGenObj = new myGenFunc;
console.log(myGenObj.next().value);
- 1: 1
- 2: undefined
- 3: SyntaxError
- 4: TypeError
🤔 مشاهده پاسخ
Generators are not constructible type. But if you still proceed to do, there will be an error saying "TypeError: myGenFunc is not a constructor"
function* yieldAndReturn() {
yield 1;
return 2;
yield 3;
}
var myGenObj = yieldAndReturn()
console.log(myGenObj.next());
console.log(myGenObj.next());
console.log(myGenObj.next());
- 1: { value: 1, done: false }, { value: 2, done: true }, { value: undefined, done: true }
- 2: { value: 1, done: false }, { value: 2, done: false }, { value: undefined, done: true }
- 3: { value: 1, done: false }, { value: 2, done: true }, { value: 3, done: true }
- 4: { value: 1, done: false }, { value: 2, done: false }, { value: 3, done: true }
🤔 مشاهده پاسخ
A return statement in a generator function will make the generator finish. If a value is returned, it will be set as the value property of the object and done property to true. When a generator is finished, subsequent next() calls return an object of this form: {value: undefined, done: true}
.
const myGenerator = (function *(){
yield 1;
yield 2;
yield 3;
})();
for (const value of myGenerator) {
console.log(value);
break;
}
for (const value of myGenerator) {
console.log(value);
}
- 1: 1,2,3 and 1,2,3
- 2: 1,2,3 and 4,5,6
- 3: 1 and 1
- 4: 1
🤔 مشاهده پاسخ
The generator should not be re-used once the iterator is closed. i.e, Upon exiting a loop(on completion or using break & return), the generator is closed and trying to iterate over it again does not yield any more results. Hence, the second loop doesn't print any value.
const num = 0o38;
console.log(num);
- 1: SyntaxError
- 2: 38
🤔 مشاهده پاسخ
If you use an invalid number(outside of 0-7 range) in the octal literal, JavaScript will throw a SyntaxError. In ES5, it treats the octal literal as a decimal number.
const squareObj = new Square(10);
console.log(squareObj.area);
class Square {
constructor(length) {
this.length = length;
}
get area() {
return this.length * this.length;
}
set area(value) {
this.area = value;
}
}
- 1: 100
- 2: ReferenceError
🤔 مشاهده پاسخ
Unlike function declarations, class declarations are not hoisted. i.e, First You need to declare your class and then access it, otherwise it will throw a ReferenceError "Uncaught ReferenceError: Square is not defined".
Note: Class expressions also applies to the same hoisting restrictions of class declarations.
function Person() { }
Person.prototype.walk = function() {
return this;
}
Person.run = function() {
return this;
}
let user = new Person();
let walk = user.walk;
console.log(walk());
let run = Person.run;
console.log(run());
- 1: undefined, undefined
- 2: Person, Person
- 3: SyntaxError
- 4: Window, Window
🤔 مشاهده پاسخ
When a regular or prototype method is called without a value for this, the methods return an initial this value if the value is not undefined. Otherwise global window object will be returned. In our case, the initial this
value is undefined so both methods return window objects.
class Vehicle {
constructor(name) {
this.name = name;
}
start() {
console.log(`${this.name} vehicle started`);
}
}
class Car extends Vehicle {
start() {
console.log(`${this.name} car started`);
super.start();
}
}
const car = new Car('BMW');
console.log(car.start());
- 1: SyntaxError
- 2: BMW vehicle started, BMW car started
- 3: BMW car started, BMW vehicle started
- 4: BMW car started, BMW car started
🤔 مشاهده پاسخ
The super keyword is used to call methods of a superclass. Unlike other languages the super invocation doesn't need to be a first statement. i.e, The statements will be executed in the same order of code.
const USER = {'age': 30};
USER.age = 25;
console.log(USER.age);
- 1: 30
- 2: 25
- 3: Uncaught TypeError
- 4: SyntaxError
🤔 مشاهده پاسخ
Even though we used constant variables, the content of it is an object and the object's contents (e.g properties) can be altered. Hence, the change is going to be valid in this case.
console.log('🙂' === '🙂');
- 1: false
- 2: true
🤔 مشاهده پاسخ
Emojis are unicodes and the unicode for smile symbol is "U+1F642". The unicode comparision of same emojies is equivalent to string comparison. Hence, the output is always true.
console.log(typeof typeof typeof true);
- 1: string
- 2: boolean
- 3: NaN
- 4: number
🤔 مشاهده پاسخ
The typeof operator on any primitive returns a string value. So even if you apply the chain of typeof operators on the return value, it is always string.
let zero = new Number(0);
if (zero) {
console.log("If");
} else {
console.log("Else");
}
- 1: If
- 2: Else
- 3: NaN
- 4: SyntaxError
🤔 مشاهده پاسخ
- The type of operator on new Number always returns object. i.e, typeof new Number(0) --> object.
- Objects are always truthy in if block
Hence the above code block always goes to if section.
let msg = "Good morning!!";
msg.name = "John";
console.log(msg.name);
- 1: ""
- 2: Error
- 3: John
- 4: Undefined
🤔 مشاهده پاسخ
It returns undefined for non-strict mode and returns Error for strict mode. In non-strict mode, the wrapper object is going to be created and get the mentioned property. But the object get disappeared after accessing the property in next line.
- ?