Gaurav Nehra (@gauravnehr77274) 's Twitter Profile
Gaurav Nehra

@gauravnehr77274

As a B.E. student from CU, I am an analytical and diligent team player with strong problem-solving skills. Seeking an opportunity to grow my technical skills.

ID: 1863878068453965824

linkhttps://www.linkedin.com/in/gauravnehra-/ calendar_today03-12-2024 09:29:14

24 Tweet

17 Followers

555 Following

Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🚀 #Day9 : Higher-Order Functions in JavaScript 🚀 Today, I explored Higher-Order Functions in JavaScript! These are functions that either: ✅ Take another function as an argument ✅ Return a function Higher-order functions make JavaScript more modular, readable, and reusable.

🚀 #Day9 : Higher-Order Functions in JavaScript 🚀

Today, I explored Higher-Order Functions in JavaScript! These are functions that either:
✅ Take another function as an argument
✅ Return a function
Higher-order functions make JavaScript more modular, readable, and reusable.
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🚀#Day10 Taking User Input from the Terminal in JavaScript? 🤔 By default, JavaScript (Node.js) doesn’t support direct terminal input. But we can do it indirectly using a prompt-sync package. 🔹Install dependencies: 1) npm init -y 2) npm install prompt-sync

🚀#Day10 Taking User Input from the Terminal in JavaScript? 🤔

By default, JavaScript (Node.js) doesn’t support direct terminal input. But we can do it indirectly using a prompt-sync package.

🔹Install dependencies:
1) npm init -y  
2) npm install prompt-sync
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

#Day11 Can you Guess function add(a, b) { return a + b; console.log("Goodmorning pineapple looking very good very nice"); } let a = add(1, 6); console.log(a); 🤔 What’s the output? 1️⃣ Goodmorning pineapple 2️⃣ 7 3️⃣ error 💡 Hint: Code after return doesn't execute!

#Day11 Can you Guess
 function add(a, b) {  
 return a + b;  
 console.log("Goodmorning pineapple looking very good very nice");  }  
let a = add(1, 6);  
console.log(a);  
🤔 What’s the output?
1️⃣ Goodmorning pineapple
2️⃣ 7
3️⃣ error
💡 Hint: Code after return doesn't execute!
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🚀#Day12 – JavaScript this Keyword The"this keyword"refers to the current execution context in JS. In methods,it accesses properties of the same object. Without this,JS searches globally, risking errors. 🔥Always use"this"to avoid global scope errors! #JavaScript #WebDevelopment

🚀#Day12 – JavaScript this Keyword
The"this keyword"refers to the current execution context in JS. In methods,it accesses properties of the same object. Without this,JS searches globally, risking errors.
🔥Always use"this"to avoid global scope errors!
#JavaScript #WebDevelopment
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🚀#Day13 🛡️ SQL Injection: A Silent Database Killer! SQL injection allows attackers to manipulate queries, leading to data breaches and authentication bypass. Solution: ✅Use prepared statements and sanitize inputs to stay safe!🔒 #CyberSecurity #SQLInjection #WebDevelopment

🚀#Day13
🛡️ SQL Injection: A Silent Database Killer!
SQL injection allows attackers to manipulate queries, leading to data breaches and authentication bypass.
Solution:
✅Use prepared statements and sanitize inputs to stay safe!🔒
#CyberSecurity #SQLInjection #WebDevelopment
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🚀#Day14: Fat Arrow Functions in JavaScript 🚀 🔥Fat Arrow Functions offer a sleek and concise way to write functions in JavaScript. 🔹 Syntax: const function_Name = (parameters) => expression; 🔹 Key Benefits: ✅ Shorter syntax ✅ Lexical this binding

🚀#Day14: Fat Arrow Functions in JavaScript 🚀
🔥Fat Arrow Functions offer a sleek and concise way to write functions in JavaScript.
🔹 Syntax: const function_Name = (parameters) => expression;
🔹 Key Benefits:
✅ Shorter syntax
✅ Lexical this binding
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

⏱️#Day15: setTimeout() vs setInterval() in JavaScript🔥In JavaScript, setTimeout() and setInterval() are used to execute functions after a certain time delay, but they behave differently. 1️⃣setTimeout()→Runs once after a delay. 2️⃣setInterval()→Runs repeatedly at intervals.

⏱️#Day15: setTimeout() vs setInterval() in JavaScript🔥In JavaScript, setTimeout() and setInterval() are used to execute functions after a certain time delay, but they behave differently.
1️⃣setTimeout()→Runs once after a delay.
2️⃣setInterval()→Runs repeatedly at intervals.
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🐦#Day16: JavaScript Array Methods – Map vs Filter vs Reduce 👩‍🏫 Map, Filter, and Reduce – the power trio of array manipulation! ✅ Map: Transforms each item and returns a new array. ✅ Filter: Filters items based on a condition. ✅ Reduce: Reduces the array to a single value.

🐦#Day16: JavaScript Array Methods – Map vs Filter vs Reduce
👩‍🏫 Map, Filter, and Reduce – the power trio of array manipulation!
✅ Map: Transforms each item and returns a new array.
✅ Filter: Filters items based on a condition.
✅ Reduce: Reduces the array to a single value.
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

✨#Day17 Why is Everyone Talking About Ghibli Style? 🎥 Inspired by Studio Ghibli’s dreamy animation. 🌌Features soft colors, nature-filled scenes & nostalgia. 🛠️Used in web design, branding & social visuals. 🖌️To create: Write on Chatgpt model 4.5"Make this Ghibli anime style"

✨#Day17 Why is Everyone Talking About Ghibli Style? 
🎥 Inspired by Studio Ghibli’s dreamy animation.
🌌Features soft colors, nature-filled scenes & nostalgia.
🛠️Used in web design, branding & social visuals.
🖌️To create: Write on Chatgpt model 4.5"Make this Ghibli anime style"
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🔥#Day18 Spread vs Rest in JavaScript🍬🧳 🔹 Spread (...) → Expands elements 🔸 Rest (...) → Gathers elements Example: 👉 Spread: Taking items out of a bag 👉 Rest: Putting items into a bag 🚀 Master these for cleaner code! #JavaScript #WebDevelopment #Coding #Programming

🔥#Day18 Spread vs Rest in JavaScript🍬🧳

🔹 Spread (...) → Expands elements
🔸 Rest (...) → Gathers elements
Example:
👉 Spread: Taking items out of a bag
👉 Rest: Putting items into a bag

🚀 Master these for cleaner code!
#JavaScript #WebDevelopment #Coding #Programming
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🚀Day 19: Did you know? You can create a dancing animation on your terminal!💃🕺 Just run this command: curl ascii.live/rick 🎯What it does: curl: Fetches data from a server. ascii.live/rick: A site hosting ASCII art of a dancing Rick Astley. The result?

Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🚀#Day20 of building in public! Just launched my portfolio website 🎉 🛠️ Built with: HTML, CSS, JS, Bootstrap, Tailwind, SQL 💻Stores form data too! Check it out & share your feedback💬 🔗 portfolio-by-gaurav-nehra.netlify.app #BuildInPublic #100DaysOfCode #90DaysOfLearning #WebDevelopment

Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🚀#Day21 Just built my first Chrome Extension!🙅‍♂️Say goodbye to filling out the same forms repeatedly! ✨ Auto Form Filler saves and auto-fills your details with a click! Tech used: HTML, CSS, JS, Chrome Extensions API 🔗 Source Code: DM me #ChromeExtension #JavaScript #WebDev

Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

#Day22🚀Exploring 3D Animations with CSS💻🧊 Just built my first 3D rotating cube using pure HTML & CSS – no JavaScript involved😎 This project helped me understand concepts: ✅ transform-style: preserve-3d ✅ KEYframe Galaxy Studios for animation ✅ rotateX, rotateY, and translateZ for 3D

Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

Hi,I'm Gaurav - 2024 CSE graduate💻 Looking for an internship or job (unpaid) to learn & grow 🚀 💡Skills: C++, HTML, CSS, Bootstrap, JS, SQL, Power BI 📚 Currently learning : React ⚡ Willing to give 110% 📎 Portfolio: portfolio-by-gaurav-nehra.netlify.app #internship #webdevelopment #fresher

Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

Just finished a freelance project with Stag Iconic as a Shopify Developer! 💻🚀 🔧 Redesigned layout 🛒 Integrated Razorpay ⏳ Added countdown timers ❌ Built cancel order feature 🖼️ Updated logos & fixed formatting #Shopify #Freelance #WebDev #Ecommerce #Razorpay #DeveloperLife

Just finished a freelance project with Stag Iconic as a Shopify Developer! 💻🚀
🔧 Redesigned layout
🛒 Integrated Razorpay
⏳ Added countdown timers
❌ Built cancel order feature
🖼️ Updated logos & fixed formatting

#Shopify #Freelance #WebDev #Ecommerce #Razorpay #DeveloperLife
Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

Is it just me or you also feel that When we don't study we have plenty of time but when we started studying we feel we don't have a single minute to waste, there is so much to do, so much to learn.

Gaurav Nehra (@gauravnehr77274) 's Twitter Profile Photo

🚦Hey folks, if no one told you yet — Bike Taxis are back! 🛵 Faster, cheaper & stress-free rides with Rapido & Uber. Who’s hopping on first? 😎 #biketaxi #Rapidobike #Uber #TravelSmart #CommuteEasy #savings

🚦Hey folks, if no one told you yet — Bike Taxis are back! 🛵
Faster, cheaper & stress-free rides with Rapido & Uber.
Who’s hopping on first? 😎
#biketaxi  #Rapidobike  #Uber  #TravelSmart  #CommuteEasy #savings