Briefly describe the correct usage of the following HTML5 semantic elements: <header>, <article>,<section>, <footer>
In which states can a Promise be?
What are defer and async attributes on a <script> tag?
function example() {
console.log(this)
}
const boundExample = bind(example, { a: true })
boundExample.call({ b: true }) // logs { a: true }
What is a callback? Can you show an example using one?
Done
How Do We Import A Module In Angular 5?
Simply use below syntax to import a module in Angular 5.
import { ModuleName } from ‘someWhere’;
Explain $event In Angular 5?
In Angular 5 $event is a reserved keyword that represents the data emitted by an event (event data).
It is commonly used as a parameter for event based methods.
What Do Double Curly Brackets Are Used In Angular 5?
double curly brackets are used form data interpolation in Angular 5.