Explore the evolution of list components in React Native, from `ScrollView`, `FlatList`, `SectionList`, to the recent `FlashList`.
Explore the benefits of building your own AI agent from scratch using Langbase, BaseUI, and Open AI, in a demo Next.js project.
Demand for faster UI development is skyrocketing. Explore how to use Shadcn and Framer AI to quickly create UI components.
The recent merge of Remix and React Router in React Router v7 provides a full-stack framework for building modern SSR and SSG applications.
3 Replies to "Demystifying function and variable hoisting in JavaScript"
Nice article
Thanks for the compliment.
Hi, You said Function hoisting supersedes variable hoisting.
Why is it then the variable declation var name = ‘gbolahan’;
is still higher than the function myName() ?
Isn’t supposedly in this order?
myName(){}
var name = undefined;
name = ‘gbolahan’