Day 31 — Operator Practice Session | 2.0 Job-Ready AI-Powered Cohort Sheryians Coding School🚀 Today was all about hands-on JavaScript operator practice — not just learning, but reinforcing by writing code 👨💻🔥 ✅ Practiced Arithmetic Operators let a = 5, b = 3; console.log(a+b, a-b, a/b, a*b); let x = 5; x += 3; x *= 3; x /= 3; ✅ Increment / Decrement let count = 5; console.log(count); count++; console.log(count); count--; // and also --count ✅ Comparison Operators 5 == "5" // true 5 === "5" // false ✅ Checking conditions: 10 > 5 10 < 20 10 === 10 ✅ Logical Operators true && false true || false !true ✅ Variable Hoisting Practice Revising fundamentals with code is helping me strengthen problem-solving and execution flow understanding 💡 #JavaScript #WebDevelopment #Frontend #PracticeMakesPerfect #SheryiansCodingSchool #LearningByDoing
JavaScript Operator Practice at Sheryians Coding School
More Relevant Posts
-
Day 38 — More Functions & Arrays | 2.0 Job-Ready AI-Powered Cohort Sheryians Coding School🚀 Today’s session covered deeper JavaScript fundamentals: ✅ More Function Concepts Anonymous, higher-order, callback, first-class functions Pure vs impure functions ✅ Understanding Scope Global, local, block scope ✅ Closures What closures are and why they’re useful ✅ Arrays Creating arrays, accessing elements Methods: push, pop, shift, unshift, filter, indexOf, spread operator Looping arrays with for and forEach ✅ Objects Creating, accessing, modifying objects Nested objects & object methods Bit by bit, JavaScript is getting clearer and more powerful 🔥 #JavaScript #WebDevelopment #Frontend #SheryiansCodingSchool #Arrays #Functions
To view or add a comment, sign in
-
-
Day 39 of Cohort 2.0 🚀 Today’s session was all about diving into Objects in JavaScript and applying concepts through practical problem-solving. 💻 Here’s what I learned today: 🔹 Objects in JavaScript → Store data in key-value pairs for structured and organized coding 🔹 Accessing & Modifying Object Properties → Learn how to read, update, and delete data dynamically 🔹 Functions + Arrays + Objects Practice → Strengthened logic by solving real-world coding problems combining all three concepts ✨ Key takeaway: Understanding how to work with objects and integrating them with arrays and functions makes JavaScript code more powerful, modular, and efficient. Sheryians Coding School #sheryianscodingschool #cohort2 #learningjourney #dailyupdates #JavaScript #WebDevelopment #Frontend
To view or add a comment, sign in
-
-
Day 33 — Loops & Conditions Practice | 2.0 Job-Ready AI-Powered Cohor Sheryians Coding School🚀 Today was all about hands-on coding with JavaScript loops & conditionals. Practiced real logic-building exercises like: ✅ Print numbers 1 to 10 ✅ Print even numbers using loops + condition ✅ Print numbers 10 to 1 (reverse loop) ✅ Print "YES" 5 times using a loop ✅ Ask a number → check positive or negative ✅ Ask user's age → check voting eligibility ✅ Multiplication table of 5 using loop ✅ Understand & handle edge cases with if-else The more I practice these logic patterns, the more comfortable I get with problem-solving in JavaScript 💪 #JavaScript #WebDevelopment #Frontend #CodingPractice #SheryiansCodingSchool #100DaysOfCode #DeveloperJourney
To view or add a comment, sign in
-
-
Day 30 of Cohort 2.0 🚀 Today’s wrap-up was all about diving deeper into JavaScript fundamentals and understanding how the language handles operations and logic. 💻 Here’s what I learned today: 🔹 Arithmetic Operators → Perform basic mathematical operations 🔹 Assignment Operators → Assign and update variable values 🔹 Comparison Operators → Compare values and return true/false 🔹 Logical Operators → Combine multiple conditions 🔹 Ternary Operator → Write shorter conditional statements 🔹 Type Checking (typeof) → Identify data types in JavaScript 🔹 String Operations → Work with and manipulate text 🔹 Nullish Coalescing (??) → Provide default values when dealing with null or undefined 🔹 Optional Chaining (?.) → Safely access nested object properties 🔹 Hoisting → Understand how variable and function declarations are processed before execution ✨ Key takeaway: Learning these core concepts builds a strong foundation for writing clean, efficient, and bug-free JavaScript code. Sheryians Coding School #sheryianscodingschool #cohort2 #learningjourney #dailyupdates #JavaScript #WebDevelopment #Frontend
To view or add a comment, sign in
-
-
Day 42 & 43 | Industry Insights + Deep JavaScript Practice 🔥👨💻 Day 42 | Cohort 2.0 Journey Had an amazing discussion with Harsh Vandana Sharma from Sheryians Coding School about: 💡 Latest updates in the IT industry 💡 Skills that actually matter 💡 How to stay consistent in tech 💡 How to grow as a developer in 2025 These sessions always reset the mindset and boost clarity. Day 43 | Cohort 2.0 Journey Session was fully packed with pure JavaScript concepts through practical examples by Harsh Vandana Sharma from Sheryians Coding School: ✔️ Higher Order Functions ✔️ Pure vs Impure functions ✔️ Function destructuring ✔️ Normal vs Arrow functions (this difference!) ✔️ map(), filter(), reduce() ✔️ some() & every() ✔️ Object.freeze() & Object.seal() ✔️ Optional chaining ✔️ Nested objects ✔️ Real logic-building questions From HOFs to object behaviour to array transformations got really connected with lot of core concepts together. #Day42 #Day43 #JavaScript #SheryiansCodingSchool #LearningJourney #ProblemSolving #HOF #ArrowFunctions #FrontendDevelopment #Cohort2
To view or add a comment, sign in
-
Day 36 — Loops & Conditions | 2.0 Job-Ready AI-Powered Cohort Sheryians Coding School🚀 Leveled up with Level 2 practice and deeper control flow concepts: ✅ Q17 & Q18,Q19 solved 🔁 do...while loops — run at least once 🧠 Recursion in JS — thinking in functions (factorial/sum patterns) 🧭 Loop control deep dive — break, continue, and clean exit patterns Tiny drills I wrote today: // do...while let i = 1; do { console.log(i++); } while (i <= 5); // recursion (factorial) const fact = n => (n <= 1 ? 1 : n * fact(n - 1)); // loop control for (let x = 1; x <= 10; x++) { if (x % 2 === 0) continue; // skip evens if (x > 7) break; // stop early console.log(x); } → Overview Function in JS Sharpening reasoning with both iterative and recursive mindsets 🔥 #JavaScript #WebDevelopment #Frontend #ProblemSolving #SheryiansCodingSchool #100DaysOfCode
To view or add a comment, sign in
-
-
🚀 Day 30 of My COHORT 2.0 Development Journey Sheryians Coding School Topic: Operators in JS Today’s class focused on one of the most important foundations of JavaScript: Operators. Operators help us perform calculations, assign values, compare data, and write logical conditions - basically the backbone of any program. Here’s what we covered: 🔢 1️⃣ Arithmetic Operators Used for basic mathematical operations: + , - , * , / , % , ** These help us calculate values and perform number-based logic. 📝 2️⃣ Assignment Operators Used to assign or update variable values: = , += , -= , *= , /= , %= They make updating values shorter and cleaner. ⚖️ 3️⃣ Comparison Operators Used to compare two values: == , === , != , !== , > , < , >= , <= These return true/false and are essential for conditions, loops, and decision-making. 🔐 4️⃣ Logical Operators Used to combine multiple conditions: && (AND) || (OR) ! (NOT) These help in creating complex logical checks in real-world applications. 🧠 Key Takeaway: Operators may look simple, but they form the base of every function, condition, calculation, and logic flow in JavaScript. Today’s class helped me understand how they work behind the scenes and how to use them effectively while building real projects. #JavaScript #Cohort2 #WebDevelopment #FrontendDevelopment #CodingJourney #OperatorsInJS #LearnByDoing #SheriyansCodingSchool
To view or add a comment, sign in
-
-
🚀 [Day 15/30] Coding Challenge Journey with @Educative.io 💻 💡 Problem: Similar String Groups Today’s problem was all about identifying relationships between strings and grouping them based on their “similarity.” Two strings are considered similar if they differ in exactly two character positions — meaning you can swap those characters to transform one into the other. My intuition started with this core idea: 👉 If two strings differ by exactly two positions, they belong to the same group. To solve this, I approached the problem like a graph traversal challenge: 1️⃣ Consider each string as a node in a graph. 2️⃣ Create an edge between two nodes if the strings differ by exactly two characters. 3️⃣ Use DFS to explore all connected strings that form a similarity group. 4️⃣ Maintain a visited array to ensure each string is processed once. So for each unvisited string, I triggered a DFS call. That DFS marked all strings connected to it (all strings that were similar by 2-character difference). This naturally formed groups of similar strings — each connected component counted as one group. This problem beautifully reinforced how string similarity + graph connectivity can come together to form a clean and efficient solution 🧠✨ 🔍 Key Learnings: Many string problems hide an underlying graph structure — discovering it is half the solution. DFS is extremely powerful for grouping, clustering, and connectivity problems. A simple rule (differ by 2 characters) can create surprisingly complex group relationships. ✨ Small win — once I mapped the problem to graph traversal instead of brute-force comparisons, everything became much more intuitive! #30DaysOfCode #Day15 #CodingChallenge #Educative #DSA #GraphTheory #DFS #JavaScript #ProblemSolving #StringAlgorithms #LearningJourney #KeepCoding
To view or add a comment, sign in
-
💡 DAY 28 & 29 — Deep Dive into JavaScript Operators Sheryians Coding School | Sheryians AI School These two days were super productive and helped me strengthen my JavaScript fundamentals! 💻 On Day 28, we had a practice session where we solved the assignments given earlier. It was all about applying what we’ve learned so far — writing, testing, and improving our JS code step by step. 🧠 Then on Day 29, we started an in-depth session on JavaScript Operators. Our mentor explained every operator type in detail and how they actually work in real scenarios. ⚙️ Topics Covered: 🔹 Arithmetic Operators — for performing mathematical operations 🔹 Assignment Operators — for assigning and updating values 🔹 Comparison Operators — to compare two values 🔹 Logical Operators — for combining multiple conditions 🔹 Ternary Operator — shorthand for if-else conditions 🔹 Type Checking Operator — to identify data types 🔹 String Operators — for concatenation and manipulation 🔹 Spread & Rest Operators — for copying and grouping data 🔹 Nullish Coalescing Operator (??) — handling null or undefined safely 🔹 Optional Chaining Operator (?.) — to access nested properties without errors We also discussed Variable Hoisting, which helped me understand how JS moves variable declarations to the top during execution. These two sessions made a lot of tricky concepts easy and clear — step by step I’m feeling more confident with JavaScript! 🚀 Instructor: Harsh Vandana Sharma #Day28 #Day29 #Cohort2_0 #JavaScript #FrontendDevelopment #WebDevelopment #LearningJourney #CodingLife #JSOperators #PracticeSession #SheryiansCodingSchool
To view or add a comment, sign in
-
-
DAY 25 — JavaScript Deep Dive Begins Sheryians Coding School | Sheryians AI School Before today’s live class, I completed the task given by Bhaiya, which was to watch a 1-hour video on “JS Learn Everything” on YouTube. From that video, I learned about the history and introduction of JavaScript, keywords, variables (var, let, const), and their scopes (global, block, function). I also understood key concepts like reassignment, re-declaration, temporal dead zone, and hoisting — which form the base of how JavaScript actually works behind the scenes. ⚙️ In today’s live session, we continued our journey with: 📘 Introduction to JS 💡 Why it’s important 🤔 What can it do for you 🖥️ Using script tag & running JS in browser 🧠 Variables and alerts (var, let, const, prompt, console) It was a great start to understanding how JavaScript brings life and interactivity to web pages! 🌐 Mentor: Harsh Vandana Sharma #Day25 #Cohort2_0 #JavaScript #FrontendDevelopment #WebDevelopment #SheryiansCodingSchool #LearningJourney #CodingLife
To view or add a comment, sign in
-
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development