Felipe Koshinomyscripts.hashnode.dev·Oct 9, 2024Creating and integrating a Searchbar and a Dropdown list with JSHTML page skeleton First post here on hashnode. For those interesting in JavaScript codes hope I can help you have some ideas for your own projects or even learn something out of this article. That said, let’s get to the point. Here is the followin...Discussjs-table
Rajon Deyrajondey.hashnode.dev·Oct 1, 20247 Useful Vanilla JS Projects for Practice!As a modern-age web developer, JavaScript is an essential part of your toolkit, and what better way to strengthen your skills than by building real projects with raw Vanilla JS? I created a playlist called "7 Useful JS Projects," featuring practical ...Discuss7usefuljsprojects
Gautam Guptagladosblog.hashnode.dev·Sep 30, 2024Starting with Three.js for 3D Graphics"The only way to do great work is to love what you do." – Steve Jobs. Hi there! I am Gautam. If you've ever wondered how those flashy Apple and portfolio websites integrate stunning 3D models, or if you're just looking to get started with 3D graphic...Discuss·10 likesJavaScript
Daniele RugginentiforPython and morepythond.hashnode.dev·Sep 22, 2024Enhance Your Date Selection with DeskyCalendar: A Simple Vanilla JS SolutionAre you tired of clunky date pickers that clutter your forms? Meet DeskyCalendar, a lightweight and elegant date picker made with pure vanilla JavaScript. It's perfect for anyone looking to elevate their web projects without the hassle of complicated...DiscussJavaScript
Abeer Abdul Ahadabeer.hashnode.dev·Sep 20, 2024Object Oriented Programming (OOP) in JavaScript - Top to BottomIf I give you a nice and clearcut explanation of what OOP is, it would be like this: Object-Oriented Programming (OOP) is a programming paradigm where the focus is on creating reusable objects that model real-world entities or concepts. In OOP, the p...Discuss·42 readsJavaScriptObject Oriented Programming
Sahil Sainisahilsaini110.hashnode.dev·Sep 14, 2024Important String Methods in JavascriptSo let us start by creating a string, there are various ways to do this but here i am using Object. let val = new String("string-metHODs-in-js "); The way we are going to learn this method is first I will describe what particular method is used fo...Discuss·1 likeJavaScript
Usese Victorusesemedia.hashnode.dev·Aug 29, 2024Arrow Functions vs. Regular Functions in JavaScript: A ShowdownWelcome to the ultimate showdown between two of JavaScript's most iconic contenders: Arrow Functions 🏹 vs. Regular Functions 🧔. In one corner, we have the sleek and modern Arrow Function, introduced in ES6 and beloved by many for its concise syntax...DiscussJavaScript
Modefoluwa Adeniyi-Samuelmode9writes.hashnode.dev·Aug 25, 2024How to Build a Multi-Step Form with Vanilla JavaScriptHow to Build a Multi-Step Form with Vanilla JavaScript Hello there, today I will be sharing my little knowledge in building a multi-step form in raw JavaScript. A smooth, engaging interface not only keeps users on your site but also guides them thro...DiscussJavaScript
Shikhar Shuklashikhar99.hashnode.dev·Aug 8, 2024Building a Custom React from Scratch with Vanilla JavaScriptReact is one of the most popular JavaScript libraries for building user interfaces, especially single-page applications. But have you ever wondered what happens under the hood when React renders an element? In this blog, we'll explore this by creatin...Discuss·88 readsReact
Manish Chavanmanishchavan.hashnode.dev·Jul 14, 2024Best Practices for Writing Readable and Maintainable JavaScript CodeGood code is easy to understand and maintain, embodying the three Rs of Software Architecture: Refactorability, Reusability, and Readability. While these principles have always been crucial, they are even more important today. Modern products are oft...DiscussJavaScript