Company: Scaler SDE intern OA_16feb
Difficulty: medium
The declaration in HTML5 is
Can we align a Block element by setting the left and right margins?
If we want to define style for a unique element, then which CSS selector will we use?
What would be the output of the following code? (function () { console.log("Original salary was " + salary); var salary = "5000$"; console.log("My New Salary " + salary); })();
What's the difference between localStorage and sessionStorage?
What will happen to dogs array after running this code? const dogs = ["Fido", "Odie", "Oscar"] dogs.length; dogs.length = 1;