Fearless • 2m
🚀 Day 4/21 – My JavaScript Learning Journey Today’s focus: Arrays in JavaScript 📦 An Array is a special object in JS used to store multiple values in a single variable. 🔹 Creating Arrays let fruits = ["Apple", "Banana", "Mango"]; 🔹 Common Methods push() → add at the end pop() → remove last element shift() → remove first element unshift() → add at the beginning indexOf() → find element index length → get size of array 💡 Example: let arr = [1, 2, 3]; arr.push(4); // [1, 2, 3, 4] arr.shift(); // [2, 3, 4] ✨ Arrays are the backbone of data handling in JavaScript. ❓What’s your favorite array method that you can’t code without? #JavaScript #Coding #WebDevelopment #LearningJourney #21DayJavaScript
Front-end Developer • 1y
#Array in #javascript: Array in Javascript enables storing a collection of multiple items under a single variable name, and has members for performing common array operations. Arrays aren't primitives but are instead Array #objects with the followin
See More



Crafting Impactful A... • 4m
🧠 Programming Challenge of the Day Can you solve this? You're given an integer array (with both positive and negative values). Each element in the array represents the number of stars (*) to be printed vertically in its column: 🔹 Positive values
See MoreKeen Learner and Exp... • 1m
Day 6 of learning Data Science as a beginner. Topic: creating NumPy arrays NumPy arrays can be created using various ways one of them is using python list and converting it into a numpy array however this is a long way here you first create a pytho
See More

Full-time Freelancer... • 1y
Most Javascript Questions Asked in Interview | PART 2 1. What is difference between a for loop and for Each loop Ans: A for loop is traditional loop that uses a counter variable to iterate over an array. ForEach loop is a method that iterate over a
See More
🚀 Founder @ HiringR... • 4m
🚀 Internship Opportunity: Java Full Stack Developer at HiringReferals.com! We are looking for 3-4 Java Full Stack Developer Interns to join our tech team at HiringReferals.com, India's fastest-growing referral-based hiring platform. 🔹 Role: Java
See MoreKeen Learner and Exp... • 2m
Day 12 of learning AI/ML as a beginner. Topic: TF-IDF practical. Yesterday I shared my theory notes and today I have done the practical of TF-IDF. For the practical I reused my spam classifier code and for TF-IDF I first imported it from the sklear
See More

Download the medial app to read full posts, comements and news.