Devfulness

Devfulness

Follow
Follow
homeInterview questions series
Tag

JavaScript

#javascript

More content

Read more stories on Hashnode


Articles with this tag

Bun is delicious. But why was it baked?

Sep 16, 2023

The shortcomings of node.js ยท Bun is a brand new javascript runtime designed to be a "drop-in replacement for Node.js". The 3 pillars of Bun according to...

Bun is delicious. But why was it baked?

Day 8- Undefined, Not defined & null in javascript

May 8, 2022

Javascript handles values that don't or shouldn't exist by the use of undefined, not defined & null keywords. These may seem similar, but there are...

Day 8- Undefined, Not defined & null in javascript

Day-6 - Is javascript pass by value or pass by reference?

May 6, 2022

It's both! Let's find out how. Pass by value Whenever a function is called, if the value of the variable is passed directly as the parameter, then the...

Day-6 - Is javascript pass by value or pass by reference?

Day 4 -Difference between slice() and splice() in javascript!

May 4, 2022

slice() and splice() are both methods on javascript arrays! slice() slice() copies the items from the original array and returns the elements the...

Day 4 -Difference between slice() and splice() in javascript!

Day 3 - What are fragments in React?

May 3, 2022

As you may already know, A React component can return only 1 node. So if we had multiple elements to return, then we have to simply wrap a <div>...

Day 3 - What are fragments in React?

Day 1 - What is hoisting and how to prevent it in javascript?

Apr 30, 2022

What is hoisting? The default behavior of the javascript interpreter is to move variable and function declarations to the top. This behavior is called...

Day 1 - What is hoisting and how to prevent it in javascript?