The Hunt Cards Flashcards

1
Q

site:dice.com | site:indeed.com | site:angel.co | site:lever.co | site:greenhouse.io | site:jobs.ashbyhq.com | site:app.dover.io (engineer | developer) (“javascript” AND “remote”) -senior -staff -sr. -lead -principal -angular after:2022-08-01

A

Google this to find different possible careers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What’s the difference between a span and a div

A

Span and div are both generic HTML elements that group together related parts of a web page. However, they serve different functions. A div element is used for block-level organization and styling of page elements, whereas a span element is used for inline organization and styling.May 11, 2021

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

FizzBuzz

A

for (var i = 1; i < 101; i++) {
if (i % 15 == 0) console.log(“FizzBuzz”);
else if (i % 3 == 0) console.log(“Fizz”);
else if (i % 5 == 0) console.log(“Buzz”);
else console.log(i);
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly