Login
Remember
Register
Recent
Hot!
Most votes
Most answers
Most views
Ask a Question
Recent questions
0
votes
1
answer
What's the output? const numbers = [1, 2, 3, 4, 5]; const [y] = numbers; console.log(y);
asked
Mar 9, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? const name = 'Lydia'; age = 21; console.log(delete name); console.log(delete age);
asked
Mar 9, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? // counter.js let counter = 10; export default counter; // index.js import myCounter
asked
Mar 9, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? const set = new Set([1, 1, 2, 3, 4]); console.log(set
asked
Mar 9, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? class Dog { constructor(name) { this.name = name; } }
asked
Mar 9, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? (() => { let x = (y = 10); })();
asked
Mar 9, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? function Car() { this.make = 'Lamborghini'; return { make: 'Maserati' }; }
asked
Mar 9, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? function greeting() { throw 'Hello world!'; } function sayHi() {
asked
Mar 9, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-quesitons-answers
0
votes
1
answer
function getInfo(member, year) { member.name = 'Lydia'; year = '1998'; }
asked
Mar 9, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? [1, 2, 3].map(num => { if (typeof num === 'number') return; return num * 2; });
asked
Mar 7, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the value of num? const num = parseInt('7*6', 10);
asked
Mar 7, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? console.log(3 + 4 + '5');
asked
Mar 7, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? const person = { name: 'Lydia', age: 21, }; for (const item in person) { console.log(item); }
asked
Mar 7, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? let person = { name: 'Lydia' }; const members = [person]; person = null; console.log(members);
asked
Mar 7, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What does this return ? const firstPromise = new Promise((res, rej) =>
asked
Mar 7, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? function* generator(i) { yield i; yield i * 2; } const gen = generator(10);
asked
Mar 7, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What does this return? [...'Lydia'];
asked
Mar 7, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What does the setInterval method return in the browser? setInterval(() => console.log('Hi'), 1000);
asked
Mar 7, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
What's the output? !!null; !!''; !!1;
asked
Mar 7, 2024
in
JavaScript
by
DavidAnderson
javascript-interview-questions-answers
0
votes
1
answer
Azure Active Directory Domain Services (Azure AD DS) allows you to create Group Policies.
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
azure
active
directory
domain
services
0
votes
1
answer
Your company is analyzing the possibility to migrate its services to Microsoft Azure.
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
microsoft
azure
0
votes
1
answer
You received a new task to deploy a critical application in Azure cloud,
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
azure
cloud
virtual
machines
0
votes
1
answer
You need to correlate events from multiple resources into a centralized repository
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
centralized
repository
0
votes
1
answer
You received a new urgent task to create several Azure virtual machines in your Azure environment. Unfortunately
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
azure
virtual
machines
0
votes
1
answer
You received a new urgent task to create several Azure virtual machines in your Azure environment.check
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
azure
virtual
machines
0
votes
1
answer
You received a new urgent task to create several Azure virtual machines
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
azure
virtual
machines
0
votes
1
answer
You received a new urgent task to create several Azure virtual machines in your Azure environment.
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
azure
virtual
machines
0
votes
1
answer
Azure Monitor can send alerts to Azure action groups.
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
azure
action
groups
0
votes
1
answer
Azure Databricks is an Apache Spark-based analytics service
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
apache
spark-based
analytics
service
0
votes
1
answer
Azure Monitor can trigger alerts based on data in an Azure Log Analytics workspace
asked
Mar 6, 2024
in
Azure
by
rajeshsharma
azure
log
analytics
workspace
Page:
« prev
1
...
79
80
81
82
83
84
85
86
87
88
89
...
667
...
next »
Recent questions
...