JavaScript Class Privates / / No Comments One of my aspects of JavaScript that drew me to it as a young developers was that its syntax was loose and I could code quickly. As you gain experience as an engineer, you start to realize that some traditional coding structure is a good thing, even if it slows you down. Using Jest or TypeScript to add typing to your JavaScript can save you from maintenance headaches and unexpected errors, for example. While those are pre-compile tools to accomplish structure, we’ve traditionally employed vanilla JavaScript patterns to mock private variables and methods in JavaScript. Did you know, however, that browsers and the JavaScript language support a specific syntax for creating private variables... more → Posted in: JavaScript Tagged with: class, JavaScript, Privates
Detect Dark Mode Preference with JavaScript / / No Comments Seemingly every website, dapp, and app offers a dark mode preference, and thank goodness. Dark mode is especially useful when I’m doing late night coding, or even worse, trading into altcoins. I’m presently working on implementing a dark theme on MetaMask and it got me to thinking: is there a way we can default to dark mode if the user’s operating system also defaults to dark mode? You can determine if the user’s operating system prefers dark mode with one quick line of code: const prefersDarkMode = window.matchMedia("(prefers-color-scheme:dark)").matches; // true This code snippet takes advantage of the CSS prefers-color-scheme media query with JavaScript’s... more → Posted in: JavaScript Tagged with: dark, Detect, JavaScript, Mode, Preference
This JavaScript scanner hunts down malware in libraries – The Register / / No Comments This JavaScript scanner hunts down malware in libraries The Register “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: down, hunts, JavaScript, libraries, Malware, Register, scanner, this
Why Javascript Is Such the Worst Programming Language – Medium / / No Comments Why Javascript Is Such the Worst Programming Language Medium “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: JavaScript, Language, Medium, programming, Such, Worst
Learn How to Create Asynchronous Programs With JavaScript – MakeUseOf / / No Comments Learn How to Create Asynchronous Programs With JavaScript MakeUseOf “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: Asynchronous, create, JavaScript, Learn, MakeUseOf, programs
JavaScript survey: Most use React but satisfaction low – The Register / / No Comments JavaScript survey: Most use React but satisfaction low The Register “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: JavaScript, most, React, Register, satisfaction, Survey
How to Build a COVID-19 Tracker in JavaScript – MakeUseOf / / No Comments How to Build a COVID-19 Tracker in JavaScript MakeUseOf “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: Build, COVID19, JavaScript, MakeUseOf, tracker
Is JavaScript the Future of Smart Contracts? – The New Stack – thenewstack.io / / No Comments Is JavaScript the Future of Smart Contracts? – The New Stack thenewstack.io “JavaScript” – Google News… more → Posted in: JavaScript Tagged with: Contracts, future, JavaScript, smart, Stack, thenewstack.io