@heyblake This is my current project in which i was working on. Simple Landing page :- https://t.co/1023r2b9K6
by the way if anyone interested to buy it.......
🚀 Throwback to Aug 2024! 🚀
This was one of my earlier projects, built with React.js! 🔥
Looking back, I can see how much I've grown as a developer. Excited for the next big thing! 💡✨
💻 #ReactJS#WebDevelopment#Throwback#CodingJourney
Project ShowCase :-
🚀 Excited to old project!
Completed building a website, and I'm thrilled to share it with you all.
--🏹The website is built using React, Tailwind CSS, and For animations i have use Framer Motion, ensuring a fully responsive and UI/UX.
Project ShowCase :-
🚀 Thrilled to share my project! Completed building a gaming website.
📷The website is built using React, Tailwind CSS, and For animations i have use Gsap, ensuring a fully responsive and UI/UX.
Just finished building a full-featured auth system using React + TypeScript, Node.js, Express, MongoDB, and Brevo (SMTP)!Learned a ton about auth flows, email verification, and real-world auth practices.#FullStack#React#NodeJS#Brevo#WebDevelopment
What is NaN, and how can you check for it??
NaN stands for Not‑a‑Number, typically a result of invalid numeric operations It has the odd property that NaN !== NaN.
Eample....
Explain typeof and edge cases (e.g., typeof null)?
typeof returns a string denoting the type of its operand.
Edge case: typeof null returns "object"—a legacy bug from JavaScript's early days.
Example:-
typeof null; // "object" (quirk)
typeof undefined; // "undefined"