Filter
Exclude
Time range
-
Near
29 Dec 2025
Day 1 of Building a new application! #javascriptdeveloper #jsdeveloper
3
33
Day-1 | Week-1 JavaScript Foundations Completed! 🚀 Today I stepped into the core of JavaScript in Harkirat’s Cohort 2.0. Key takeaways from today’s class: 🔹 Why languages exist & what JS solves 🔹 Interpreted vs Compiled languages 🔹 Strict vs Dynamic typing 🔹 Single-threaded nature of JS 🔹 Primitives vs Complex data types 🔹 Functions callbacks in JS 🔹 Understanding how runtime executes code I even wrote my first function callback flow to return data! This foundation is going to power everything ahead – Node.js, async, APIs & backend logic. #JavaScript #NodeJS #WebDevelopment #FullStack #CodingJourney #100DaysOfCode #LearningInPublic #HarkiratCohort #JSDeveloper #TechJourney
4
334
Tired of getting AI tutorials? Looking for fun?? You don't believe JS could make something mesmerizing? 👀 Then I'm inviting you to join my talk, witness something amazing with your JS 🖼️ #jsnation #jsdeveloper #framework #mainjs
.@Rayhan_nj invites you🔥to his talk: "They Said JavaScript Couldn't Make Beautiful Art – They Were Wrong." Can’t wait to see you at JSNation US this November.
2
59
From Happy to Panicking in 0.1s : const [mood, setMood] = useState("happy"); setMood("confused"); setMood("panicking"); #ReactJS #ReactHooks #useState #WebDevHumor #ProgrammerLife #DevMemes #FrontendFun #CodingStruggles #100DaysOfCode #JSDeveloper
2
54
👨‍💻 بعد فترة شغل وتجربة في مجال الـ Frontend باستخدام React، حبيت أشارك شوية نصايح لأي حد داخل المجال أو حابب يطور من نفسه: ⸻ 1 - افهم الأساسيات الأول قبل ما تغوص في React، اتأكد إنك متمكن من JavaScript (خصوصًا ES6 )، زي map, filter, destructuring, و async/await. كمان مهم تفهم الـ DOM كويس وإزاي تتعامل مع الـ events. ⸻ 2 - اشتغل بـ Functional Components و Hooks بلاش تشتغل بـ class components في أي مشروع جديد. ركز على useState, useEffect, useMemo, useCallback, و useRef. دول فعلاً بيفرقوا في الأداء والتنظيم. ⸻ 3 - نظم ملفات المشروع نظم شغلك من البداية، سواء feature-based أو component-based structure. ده بيسهل عليك الصيانة والتطوير بعد كده. ⸻ 4 - افهم State Management في البداية، useState و useContext كفاية. بس مع كبر المشروع، هتحتاج حاجة زي Zustand أو Redux Toolkit. شخصيًا بحب أبسط حل ينجز ويكون سهل في القراءة. ⸻ 5 - اتقن CSS جربت كذا طريقة، واللي ارتحت له Tailwind CSS – سريع ومرن جدًا. لكن لو هتشتغل مع فريق، اتفقوا على Style واحد سواء SCSS أو CSS Modules. ⸻ 6 - متنساش Testing مهما كنت شايف إن المشروع بسيط، وجود اختبارات (حتى لو بسيطة بـ React Testing Library) بيريّحك جدًا على المدى الطويل وبيخلي الكود أكثر ثقة. ⸻ 7 - حسّن الأداء راقب الأداء باستخدام React.memo, useMemo, useCallback. استخدمتهم في كذا مشروع وفعلاً فرقوا في سرعة الريندر، خاصة لما بتتعامل مع Lists كبيرة. ⸻ 8- Debugging Tools React Dev Tools من أهم الأدوات اللي لازم تتعلم تستخدمها كويس. ودايمًا راقب الـ Network و Console وانت شغال. ⸻ 9 - اتفرج على كود غيرك GitHub كنز، اتعلمت كتير من مشاريع ناس تانية. شوف إزاي بيبنوا الكومبوننتس، بيفصلوا الـ logic، وبيتعاملوا مع الأخطاء. ⸻ 10 - ابني مشاريع حقيقية مهما قريت أو اتفرجت على فيديوهات، مفيش زي التطبيق العملي. كل مشروع هتعمله هتطلع منه بحاجة جديدة. أنا بدأت بـ Todo App وبعدها Blog Dashboard، وكل واحد فيهم علمني حاجة. #ReactJS #FrontendDevelopment #WebDev #JavaScript #CodingTips #LearnReact #100DaysOfCode #DevCommunity #TechTips #ReactDeveloper #CodeNewbie #WomenWhoCode #CleanCode #TailwindCSS #Zustand #ReduxToolkit #TestingInReact #JSDeveloper #BuildInPublic #ريأكت #تعلم_البرمجة #نصائح_برمجية #واجهات_أمامية #تطوير_الويب #جافاسكربت #برمجة #نصائح_ريأكت
2
11
139
17,666
🎙️ Joel Humberto Gómez Paredes estará en #JConfMéx2025 Frontend en Platzi, fullstack JS, GDE en web y mapas… y fan de los corgis, los tacos y los Pokémon. ¡Qué nivel! 📅 7 de junio 🎟️ Adquiere tus boletos aquí: eventos.jconf.mx/event/2/jco… #JSDeveloper #GoogleDeveloperGroup
5
10
2,080
🔥 How to Flat an Array in JavaScript In JavaScript, you can flatten nested arrays using multiple methods. A thread 🧵👇🏻 #javascript #learnjavascript #javascriptdeveloper #javascriptprojects #javascripttricks #reactjs #nextjs #nodejs #javascriptcourse #javascriptforbeginners #javascriptcoding #jsdeveloper #javascriptcode
35
15
79
3,101
The full form of HTML is HyperText Markup Language. 🔥 What is an HTML Tag? HTML tags are special keywords used to create the structure of a web page. 👉 Syntax: <tagname>Content goes here...</tagname> ✅ Example: <h1>Hello World</h1> Here: <h1> = Opening Tag Hello World = Content </h1> = Closing Tag 🔑 Types of HTML Tags: - Type Paired Tags Example <p></p> Have opening & closing tags ______________________________ - Type Self-Closing Tags Example <img /> No closing tag ______________________________ - Type Empty Tags Example <br /> Only opening tag (used for line breaks) Most Common HTML Tags 🔥 <h1>-Heading <p>-Paragraph <a>-Link <img>-Image <div>-Container <span>-Inline container <ul>-Unordered List <table>-Table 🎯 Bonus Tip: HTML is not case-sensitive ➡️ <TITLE> = <title> #webdevelopment #nextjs13 #reacthooks #codinglife #developercommunity #jsdeveloper #javascript #reactjs #nextjs #frontenddeveloper #fullstackdeveloper #codingtips #programmingtutorial #learnjavascript #ai #chatgpt #100DaysOfCode #webdev
29
51
260
8,864
JavaScript array methods 🚀🔥 1. Adding & Removing Elements push(item) → Adds an item at the end of the array. pop() → Removes the last item from the array. unshift(item) → Adds an item at the beginning of the array. shift() → Removes the first item from the array. ----------------------------------------------------- 2. Searching in an Array indexOf(item) → Returns the index of the first occurrence of an item (or -1 if not found). lastIndexOf(item) → Returns the index of the last occurrence of an item. includes(item) → Returns true if the item exists in the array, otherwise false. find(callback) → Returns the first matching element based on a condition. findIndex(callback) → Returns the index of the first matching element based on a condition. ----------------------------------------------------- 3. Modifying or Transforming Arrays map(callback) → Creates a new array by modifying each item. filter(callback) → Creates a new array with only the items that match a condition. reduce(callback, initialValue) → Reduces the array to a single value (e.g., sum of all numbers). forEach(callback) → Runs a function for each item (but doesn’t create a new array). some(callback) → Returns true if at least one item matches a condition. every(callback) → Returns true if all items match a condition. ----------------------------------------------------- 4. Sorting & Reversing sort(compareFunction) → Sorts the array (default is ascending, but can be customized). reverse() → Reverses the order of the elements in the array. ----------------------------------------------------- 5. Extracting & Combining Arrays slice(start, end) → Extracts a portion of an array (without modifying the original). splice(start, deleteCount, item1, item2, …) → Changes the array by adding/removing elements. concat(array2, array3, …) → Joins two or more arrays into a new array. flat(depth) → Flattens nested arrays into a single array (default depth is 1). join(separator) → Converts an array to a string, with elements separated by a given character. ----------------------------------------------------- 6. Converting & Checking Arrays toString() → Converts an array to a string. Array.isArray(value) → Checks if a value is an array (true or false). #JavaScript #JSDeveloper #LearnJavaScript #JavaScriptTutorial #Coding #JavaScriptArrays #ArrayMethods #JSArrayTips #CodingWithJS #JavaScriptTricks #WebDevelopment #coder #CodeNewbie #FrontendDeveloper #coding #ProgrammingTips #100DaysOfCode #react
25
7
39
2,876
What was your biggest obstacle when you first started with JavaScript? If you were designing a tutorial for absolute beginners in 2025, what would be your essential first chapter? Looking back, what resources or explanations do you wish had been available when you started? In your experience, what crucial element is consistently missing from existing JavaScript tutorials and books? #JavaScriptCommunity #JavaScript #WebDevelopment #CodingEducation #TechLearning #WebDev #Programming #CodeNewbie #100DaysOfCode #Developer #SoftwareEngineering #FrontEnd #FullStack #JSdeveloper #TechEducation #CodeLearning #LearnToCode #DeveloperCommunity #JavaScriptDeveloper #WebDevCommunity #TechTutorials #CodingTips #ProgrammingEducation #ReactJS #NodeJS
2
51
JS development services: Pearl Organisation offers outstanding JavaScript development services tailored to your specific needs. pearlorganisation.com #Pearl_Organisation #JSDeveloper #IT_Services #digitaltransformation #technology #innovation #digitalmarketing
1
2
19
🇫🇷 : Laquelle préférez-vous ? et pourquoi ? 🇬🇧 : Which one do you prefer? and why ? #devs #typeScript #jsDeveloper #js
2
23
Built Tetris in 3D using React Three Fiber! 🧊🎮 Was inspired to recreate classic Tetris in a 3D web environment. 🔗harshdhillon.com/sketches/te… #tetris #react #reactthreefiber #r3f #threejs #vercel #supabase #gamedev #indiedev #indiehackers #webdev #js #jsdeveloper
2
6
726
We are Hiring For EXP Candidates..!! DM with ur resume for referral..!!! Open Roles: 1. SQL, Angular Developers 2 Java, Microservices& Spring Boot 3. Advanced DAX, Power Query, PowerBI modelling 4. Python Web developer 5.UX Designer, React JSDeveloper And Many More Roles...
5
19
18
4,436
Javascript Tip: Use the Number.parseInt() and Number.parseFloat() methods to parse strings as integers or floating-point numbers. #JSFramework #FrontendFramework #Coding #JSDeveloper #FrontendEngineer #ModernJavaScript #JSLibraries
1
1
56
#Hiring Position Vacant: React JS Developer Inter Location: Remote Organization: The First Sol Skills: HTML, JS, TypeScript, Data Base Freshers encourage to apply Like Share Comment #urgenthiring #jobs2024 #hrheros #onsitejob #Jsdeveloper #internship
5
9
875