Login
Remember
Register
User DavidAnderson
Wall
Recent activity
All questions
All answers
Ask a Question
Answers by DavidAnderson
0
votes
A gaming website gives users the ability to trade game items with each other on the platform.
answered
Feb 28, 2024
in
AWS
aws-interview-questions-answers
0
votes
A Development team need to push an update to an application that is running on AWS Elastic Beanstalk.
answered
Feb 28, 2024
in
AWS
aws-interview-questions-answers
0
votes
A developer has deployed an application on an Amazon EC2 instance in a private subnet within a VPC.
answered
Feb 28, 2024
in
AWS
aws-interview-questions-answers
0
votes
A Developer is creating a web application that will be used by employees working from home.
answered
Feb 28, 2024
in
AWS
aws-developer-associate-free-practice-exam-questions
0
votes
What is AWS IAM?
answered
Feb 28, 2024
in
AWS
aws-iam-interview-questions-answers
0
votes
What's the output? [[0, 1], [2, 3]].reduce( (acc, cur) => { return acc.concat(cur); }, [1, 2], );
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
Everything in JavaScript is either a...
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
What's the output? (() => { let x, y; try { throw new Error(); }
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
What's the output? const numbers = [1, 2, 3]; numbers[10] = 11; console.log(numbers);
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
What's the output? console.log(typeof typeof 1);
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
Which of these values are falsy? 0; new Number(0); (''); (' '); new Boolean(false); undefined;
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
What's the output? function sayHi() { return (() => 0)(); } console.log(typeof sayHi());
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
What's the output? const person = { name: 'Lydia' }; function sayHi(age) { return `${this.name} is ${age}`; }
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
When you click the paragraph, what's the logged output? <div onclick="console.log('div')">
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
What is the event.target when clicking the button? <div onclick="console.log('first div')">
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
What's the output? const foo = () => console.log('First'); const bar = () => setTimeout(() => console.log('Second'));
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
What's the output? const a = {}; const b = { key: 'b' }; const c = { key: 'c' }; a[b] = 123; a[c] = 456;
answered
Feb 27, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
What's the output? String.prototype.giveLydiaPizza = () => { return 'Just give Lydia pizza already!'; };
answered
Feb 26, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
What's the output? for (let i = 1; i < 5; i++) { if (i === 3) continue; console.log(i); }
answered
Feb 26, 2024
in
JavaScript
javascript-interview-questions-answers
0
votes
The JavaScript global execution context creates two things for you: the global object, and the "this" keyword.
answered
Feb 26, 2024
in
JavaScript
javascript-interview-questions-answers
Page:
« prev
1
...
54
55
56
57
58
59
60
61
62
63
64
...
183
next »
...