questionTitle |
questionDescription |
answers |
correctAnswer |
explanation |
complexity |
theme |
Какие методы массива вернут строку как результат? |
|
slice() |
toString() |
join() |
splice() |
concat() |
|
|
|
2 |
Массивы |
|
questionTitle |
questionDescription |
answers |
correctAnswer |
explanation |
complexity |
theme |
Какие методы массива вернут boolean как результат? |
|
every() |
some() |
indexOf() |
includes() |
toString() |
|
every() |
some() |
includes() |
|
|
2 |
Массивы |
|
questionTitle |
questionDescription |
answers |
correctAnswer |
explanation |
complexity |
theme |
При помощи какого метода можно создать новый массив? |
|
of() |
reverse() |
sort() |
from() |
indexOf() |
|
|
|
2 |
Массивы |
|
questionTitle |
questionDescription |
answers |
correctAnswer |
explanation |
complexity |
theme |
Какие методы массива возвращают новый массив? |
|
some() |
map() |
filter() |
forEach() |
|
|
|
2 |
Массивы |
|
questionTitle |
questionDescription |
answers |
correctAnswer |
explanation |
complexity |
theme |
Какие из методов или свойств массива вернут длину нового/существующего массива? |
|
pop |
shift |
length |
unshift |
push |
|
|
|
2 |
Массивы |
|
questionTitle |
questionDescription |
answers |
correctAnswer |
explanation |
complexity |
theme |
Какие из методов вернут массив? |
|
Object.valueOf() |
Object.keys() |
Object.values() |
Object.entries() |
|
Object.keys() |
Object.values() |
Object.entries() |
|
|
2 |
Объекты |
|
questionTitle |
questionDescription |
answers |
correctAnswer |
explanation |
complexity |
theme |
Какой из методов устанавливают дескрипторы свойств? |
|
Object.hasOwnProperty() |
Object.is() |
Object.getOwnPropertyDescriptor() |
Object.defineProperty() |
Object.defineProperties() |
|
Object.defineProperty() |
Object.defineProperties() |
|
|
2 |
Объекты |
|
questionTitle |
questionDescription |
answers |
correctAnswer |
explanation |
complexity |
theme |
Выберите движки JS: |
|
V8 |
JavaScripCore |
Chakra |
SpiderMonkey |
|
V8 |
JavaScripCore |
Chakra |
SpiderMonkey |
|
|
2 |
|
|
questionTitle |
questionDescription |
answers |
correctAnswer |
explanation |
complexity |
theme |
Какие методы массива изменяют исходный массив? |
|
pop |
slice |
splice |
reverse |
some |
|
|
|
3 |
Массивы |
|
questionTitle |
questionDescription |
answers |
correctAnswer |
explanation |
complexity |
theme |
Выберите варианты в которых результат сравнения false? |
|
null == undefined |
"true" == true |
[1,2,3] == [1,2,3] |
null == 0 |
NaN == NaN |
|
'true' == true |
[1,2,3] == [1,2,3] |
null == 0 |
NaN == NaN |
|
|
3 |
Типы данных |
|