Interview Prep Backpack!
Interview Prep Backpack!
Attributes
HTML Elements
Media
6. How do you set the width and height of an element including its padding and
border?
Use box-sizing: border-box; to include padding and border in the element's total
width and height.
Responsive Design
Styling
ES6 Features
APIs
19.What is an API?
An API (Application Programming Interface) allows applications to communicate with
each other, providing data and services.
24.How do you send data in a POST request using Fetch API?
Use the fetch() function with the method set to POST and include data in the body.
Example:
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ key: 'value' })
});