Best of JavaScriptFebruary 2021

  1. 1
    Article
    Avatar of hashnodeHashnode·5y

    100 most asked JavaScript Interview Questions and Answers - Part 1

    JavaScript is a lightweight, interpreted, or just-in-time compiled programming language with first-class functions. It is most well-known as the scripting language for Web pages, but many non-browser environments also use it, such as Node.js, Apache CouchDB, and Adobe Acrobat.

  2. 2
    Article
    Avatar of devtoDEV·5y

    5 useful javascript tricks

    In this post, I will show you 5 awesome javascript tricks which will make your life more easier. So if you are interested, continue reading. Tricks include removing duplicates from an Array and turning a Decimal Number to an integer. Trick-4: Get a random index value from an array. Trick-5: Detect the most lengthy word in an array

  3. 3
    Article
    Avatar of devtoDEV·5y

    8 JavaScript Animation Libraries You should "MUST TRY"

    Animations on web applications are appealing and grab the user’s attention. JavaScript is the preferred tool of use because it handles more complex and advanced effects. Using mo.js on your site will enhance the user experience, enrich your content visually and create delightful animations precisely.

  4. 4
    Article
    Avatar of hashnodeHashnode·5y

    What's new in Javascript 21 - ES12

    This year javascript is bringing 4 new features, which are almost in production rollout. I won't be wasting much more time and directly jump to code with easy to understand examples. Use the latest node version, if you want to play around with these features. Once the compatible node version is available, simply create a new JS file, and let's get started.

  5. 5
    Article
    Avatar of medium_jsMedium·5y

    Handle JavaScript Events Like A Pro

    An event propagates in 3 phases: capture, bubble and target. If an event has occurred on a button then it will also be triggered by its parent and its parent’s parent and so on up until the HTML element. An event bubbling is the propagation of an event from its origin towards the root element.

  6. 6
    Article
    Avatar of css_tricksCSS-Tricks·5y

    How to Create a Shrinking Header on Scroll Without JavaScript

    Sticky headers are a way to shrink a website’s header without using JavaScript. The inner container contains all the header elements, such as the logo and the navigation. The outer container is in a way the actual header, while the only function of the parent element is to make the header taller.

  7. 7
    Article
    Avatar of btrprogBetter Programming·5y

    Why JavaScript Developers Should Prefer Axios Over Fetch

    Fetch() is part of a JavaScript window-object method within the Fetch API. It is built in, so users don’t have to install it. Users can avoid boilerplate and write cleaner, more succinct code in Axios. Axios has some advantages, like protection against cross-site request forgery (CSFR) attacks.

  8. 8
    Article
    Avatar of jsPlainEnglishJavaScript in Plain English·5y

    Meet the HERN Stack, where everything is written in JavaScript

    Meet the HERN Stack, where everything is written in JavaScript. The HERN stack stands for HarperDB, Express, React, & Node, which are all written using JavaScript. There is no right or wrong answer when it comes to choosing a tech stack because it really depends on the specific use case it’s meant to solve.

  9. 9
    Article
    Avatar of css_tricksCSS-Tricks·5y

    “Cancelable” Smooth Scrolling

    I’m finding some discrepancies between browsers, as well as between CSS and JavaScript on how this all works. Here’s what I experienced on the browsers I have easy access to: Chrome, Firefox, Safari and Edge. I find the cancellable behavior better UX, although I have no data to back that up.

  10. 10
    Article
    Avatar of jsPlainEnglishJavaScript in Plain English·5y

    I’m Not Using JavaScript Anymore

    Deepak Vishwakarma has almost stopped writing JavaScript for the past few years. He has started developing all his library and application in TypeScript. This article does not cover the pros and cons of JavaScript. Rather than just focus on Good Parts of TypeScript, it focuses on the bad parts.

  11. 11
    Article
    Avatar of hashnodeHashnode·5y

    Why I left Node for Deno 🦕

    Deno is a javascript runtime like Nodejs but with some changes. With Deno, you no longer need to install packages with package managers like NPM. Imports are done with Urls which can be either in deno's package manager with versioning, or directly on the git directory of your favorite library.

  12. 12
    Article
    Avatar of dzDZone·5y

    How to Master Web Development

    Learn one programming language (JavaScript), the markup language HTML, and the styling language CSS. You’ll also learn the JavaScript framework React and the principles of UX and UI design. If you take a while to land your first web development job, these design skills can help you make pretty good money.

  13. 13
    Article
    Avatar of css_tricksCSS-Tricks·5y

    Some React Blog Posts I’ve Bookmarked and Read Lately

    React is the web's most popular framework. Frontend Masters has the best courses on the web for React. Includes a complete learning course from the best teachers in JavaScript. Wanna learn React deeply? Take our React deep learning course. Back to Mail Online home. back to the page you came from.

  14. 14
    Article
    Avatar of medium_jsMedium·5y

    Three important Concepts in JavaScript

    There is a lot of an important lot of concept in JavaScript. If you are a JavaScript developer, then you need to know these three concepts. When we create an object, it generates a new memory address. There are two types of scopes in JavaScript according to where we can use a variable inside our code.

  15. 15
    Article
    Avatar of freecodecampfreeCodeCamp·5y

    Why You Should Use React.js For Web Development

    .com. Why You Should Use React.js For Web Development. React is a React-based programming language. It's used to build and test web applications. For more information on React, visit www.react-js.com and www.react.com/react.

  16. 16
    Article
    Avatar of dailydaily.dev·5y

    CSS Hacks, JavaScript Animation Libraries - Picks #167

    GitHub Surf is a new product that will let you edit the code of a repo via your browser. Learn the basics terms and components of a microservices architecture. The Dark Side of Becoming a Self-Taught Developer gives a glimpse of what it takes to be a developer.

  17. 17
    Article
    Avatar of bitBits and Pieces·5y

    The power of Axios

    Axios is a powerful promise-based HTTP client used to make requests to external servers from the browser. Get to know the features of Axios and how to use them in practice. Axios provides a range of advanced features not known by many. This article will focus on these features to increase your awareness of its true potential.

  18. 18
    Article
    Avatar of hashnodeHashnode·5y

    Pure Functions in JavaScript

    Functional programming is a programming paradigm that's been gaining a lot of traction in JavaScript. One of the core concepts of functional programming is pure functions and writing declarative vs. imperative code. In this article, I'll define what pure functions are, why they're beneficial, and how to construct them.Pure functions consist of the following two concepts:Given the same inputs, the function will always return the same output. The function should not modify anything outside of its scope.

  19. 19
    Article
    Avatar of kentcdoddsKent C. Dodds·5y

    Listify a JavaScript Array

    Intl.List Format is a way to display a list of items to a user. Because it's coming from the Intl standard, a TON of locales are supported, so you can get internationalization for "free" There's also a lesser-known localeMatcher option which can be configured to either 'lookup' or 'best fit'

  20. 20
    Article
    Avatar of jsPlainEnglishJavaScript in Plain English·5y

    A Beginner’s Guide To JavaScript Under The Hood

    JavaScript is interpreted language which means we don’t have to compile it before sending it to the browser. An interpreter takes the raw code and runs it for you. A single line of code can block a whole application down. Since JavaScript is single-threaded, it has only one stack and one process per tab.

  21. 21
    Article
    Avatar of itnextITNEXT·5y

    Java Script Camp

  22. 22
    Article
    Avatar of phProduct Hunt·5y

    Deepdark Material Theme — A clean and dark material theme + icon package for VS Code

    Deepdark Material is a black on black color theme inspired by Material design colors. The theme has full support for languages like PHP, HTML and JavaScript. Deepdark Material can be downloaded from the following sites: Amazon, Google Play, Microsoft, Yahoo, Facebook, Twitter, and more.

  23. 23
    Article
    Avatar of swlhThe Startup·5y

    Javascript Hoisting

  24. 24
    Article
    Avatar of hashnodeHashnode·5y

    🔥 Ultimate Cheatsheet Compilation

    I hope you will find this blog post useful and keep it handy for a quick reference. If you want to learn more HTML, CSS, JavaScript and web development tips & tricks, then please subscribe to YouTube. Back to Mail Online home. Back To the page you came from.

  25. 25
    Article
    Avatar of dailydaily.dev·5y

    Create Chrome Extension with HTML, CSS, and JavaScript

    Google Chrome is one of the most loved browsers for developers as well as general users. Today, we are going to look into how you can create your very first Google Chrome extension with the use of HTML, CSS, and JavaScript. The tutorial will be easy for you. You only need to know "How to setup the extension?"