I am a CS Student from India.
Nothing here yet.
Iteration let x = [1, 'b', a => a + 1]; x.length = 6; for(let i = 0; i<x.length; i++){ console.log(`x: ${x[i]} of type ${typeof(x[i])}`); } Output: in iteration The in keyword skips the undefined entries //i here takes the index values for(cons...

Directives are special attributes that start with v-and are used to add dynamic behaviour to HTML elements. Directives are used to apply special behaviour to the elements they are attached to, like conditionally rendering elements, binding data to el...
