Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
User GeorgeBell
Wall
Recent activity
All questions
All answers
Ask a Question
Answers by GeorgeBell
Home
User
GeorgeBell
Answers
0
votes
Q: Template literals support ____________.
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Which keywords can be used to implement inheritance in ES6?
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: The bodies of class declarations and class expressions are executed in strict mode. (1)True (2)False
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: _________ feature helps us to simplify the inheritance concept.
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Maps can be used to store __________.
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Which is not true about static methods?
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Below is the extends class code class Player extends Student { constructor(roll, name) { super(roll, name); this.Player = true; } }; Here, super(roll,name); refers to the
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: What will be printed if the following code is executed? let x=150; if(x>100) { x=1; } console.log(x);
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Which of the following statements is not true about level of scope?
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Which of the following is not a state of Promise?
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Variables declared with which of the following constructs do not have block scope?
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: What is the scope of the variable "a" in function below? function val(x){ if(x>0){ let a = x; console.log(a); } }
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: A Promise has _________ number of states.
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: What is the meaning of the following line of code? const pi=3.14;
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Which of the following does not declare a block scoped variable?
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: What if promise2 get rejected in the following syntax? Promise.all(promise1, promise2, .....)
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Keyword "let" allows redeclaring variables.
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Objects declared as "const" are immutable.
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: Symbols can be created using the factory function _________.
answered
Jan 21, 2020
in
ECMAScript
0
votes
Q: What is the significance of the following code snippet? for (let i = 0; i < 10; i++) { x += 10; }
answered
Jan 21, 2020
in
ECMAScript
Page:
« prev
1
...
67
68
69
70
71
72
73
74
75
76
77
...
84
next »
...