Best of MediumApril 2022

  1. 1
    Article
    Avatar of medium_jsMedium·4y

    Automatic Dark Mode With JavaScript

    Detecting Users’ OS Dark Mode Preference Using matchMedia() using JavaScript. For many users, dark mode provides a more eye-friendly interface with fewer white tones that can cause eyestrain. In JavaScript, you can takes advantage of the Window interface’s match media() method to check the value of the prefers-color-scheme CSS feature.

  2. 2
    Article
    Avatar of medium_jsMedium·4y

    Stack & Tools You Should Learn to Become a Full-Stack Developer Faster

    Single Page Applications (SPAs) are the way to go. Vue.Js is one of the most popular SPA-building libraries. Node.js is a JavaScript runtime environment that is open-source and cross-platform. MongoDB is the “M” in the famous MEAN and MERN stacks.

  3. 3
    Article
    Avatar of medium_jsMedium·4y

    A Deep Dive Into Go’s Concurrency

    Go is known for its first-class support for concurrency, or the ability for a program to deal with multiple things at once. Code concurrently running is becoming a more important part of programming as computers move from running a single stream of code faster to running more streams simultaneously. Three features in Go, goroutines, channels, and selects, make concurrency easier when used together.