HTML Tip 💡: Allow a long word to break at specific points using a hyphen `-`, when necessary, using the `­` HTML entity 🔥 Do Like 👍 & Repost 🔄 #html #css #javascript #100daysofcode #webdevelopment #programming
More Relevant Posts
-
JavaScript Tip 💡: If you want to remove duplicates from your array, make a `Set()` out of it, and spread it back into an array. Hope this helps ✅️ Do Like 👍 & Repost 🔄 #html #css #javascript #100daysofcode #webdevelopment #programming
To view or add a comment, sign in
-
JavaScript Tip 💡: If you want to remove duplicates from your array, make a `Set()` out of it, and spread it back into an array 🔥 Hope this helps ✅️ Do Like 👍 & Repost 🔄 #html #css #javascript #100daysofcode #webdevelopment #programming
To view or add a comment, sign in
-
Dynamically increment CSS counters using the `counter-increment` to label styled elements sequentially 🔥 Do Like 👍 & Repost 🔄 #html #css #javascript #100daysofcode #webdevelopment #programming
To view or add a comment, sign in
-
Use CSS "scroll-padding-top" to add space at the top so nothing gets hidden when you scroll 🔥 Hope this helps ✅️ Do Like 👍 & Repost 🔄 #html #css #javascript #100daysofcode #webdevelopment #programming
To view or add a comment, sign in
-
🧑🍳 "Creating an Array When in a Hurry" – a JavaScript Recipe: 1️⃣ Start with an Array constructor to set the length 2️⃣ Spread it evenly to remove the sparseness 3️⃣ Use the .keys() for a nice, incremental filling Hope this helps ✅️ Do Like 👍 & Repost 🔄 #html #css #javascript #100daysofcode #webdevelopment #programming
To view or add a comment, sign in
-
I stumbled upon a fantastic article about object oriented programming in JavaScript from 2006 by Mike Koss. Unfortunately its only available from the web archive. It will be definitely useful for the beginners and still relevant. https://lnkd.in/e7vkhFCS #OOP #OOD #ObjectOrientedProgramming #JavaScript
To view or add a comment, sign in
-
Flappy Bird Game Using HTML CSS JavaScript Demo Link : https://lnkd.in/gx4ffKFJ For Code : https://lnkd.in/g_87vQJc #code #owncode #html #css #javascript #webpage #websites #webdevelopment #programming #language #webapp #coding
To view or add a comment, sign in
-
🔹 Day 4/30 – Conditional Statements (if–else) Programming is all about decision making, and conditional statements help JavaScript decide what to do and when. The if–else structure allows code to run only when a certain condition is true. This is one of the most important concepts for building real applications. Conditional logic is used in: Authentication systems Marks and grading logic Feature access control Understanding this topic made me realize how much logic goes into even simple applications. ❓ Where did you recently use conditional logic? #JavaScript #ControlFlow #LearningInPublic
To view or add a comment, sign in
-
-
📌 Understanding findIndex() in JavaScript JavaScript provides the findIndex() method to help us locate the position of an element in an array based on a condition. Unlike indexOf(), which checks for an exact value, findIndex() allows us to use custom logic through a callback function. 👉 What does findIndex() do? 🔹 It returns the index of the first element that satisfies the given condition. 🔹 If no element matches, it returns -1. 👉 When to use findIndex() 🔹 When you need the position of an element 🔹 When matching is based on conditions, not exact values 🔹 Useful for updating or removing items in arrays findIndex() stops searching as soon as it finds a match, making it efficient for large datasets. #JavaScript #WebDevelopment #FrontendDevelopment #CodingTips #LearnJavaScript #ES6 #Programming #TechCareers
To view or add a comment, sign in
-
-
Before your JavaScript code runs, JS scans the entire file first. During this step, it registers variables and functions in memory. This behavior is called hoisting. 1️⃣ Variable Hoisting var → hoisted and initialized as undefined let / const → hoisted but not initialized (Temporal Dead Zone) 2️⃣ Function Hoisting Function declarations → fully hoisted Function expressions & arrow functions → not hoisted #JavaScript #WebDevelopment #Programming #Developer #LearnJavaScript #JavaScriptTips #CodingExplained #DevCommunity #BuildInPublic #DevelopersOfLinkedIn
To view or add a comment, sign in
-
More from this author
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
Wow, that's a great tip, i needed something exactly like that a while ago