Hopp til hovedinnhold

Innhold om JavaScript

Totalt 92 innlegg

Side 2 av 7

Why I love Style Dictionary, and why you should too

CSS, JavaScript
Artikkel (8 min)
Fra Kristofer Selbekk
21.12.2021

Style Dictionary is one of the very best tools I've ever encountered. It's powerful, fun, and great for managing your design tokens!

Typesafe forms in TypeScript

JavaScript
Artikkel (5 min)
Fra Vegard Veiset
07.12.2021

Have you ever written a form with multiple steps in JavaScript and thought "this isn't very elegant"? I have. Let's take a look at how we can make our forms better with type safety and TypeScript!

Building Tool Plugins for Sanity Studio

React, JavaScript
Artikkel (5 min)
Fra Aslak Sheker Mkadmi
06.12.2021

Learn how to easily build your own Tool Plugins to customize Sanity.

VoiceOver for dummies

JavaScript
Artikkel (3 min)
Fra Ingeborg Sætersdal Sollid
03.12.2021

Everyone that works with development of web pages has to deal with universal design. Accessibility should be considered from the start and it is therefore smart to test with a screen reader during the development. It is often more costly to make an existing project accessible, rather than just doing it right the first time. This fall I have tried to learn how to use VoiceOver on Mac. I want to share with you the most essential parts I have learned and I hope this introduction will help you get started with VoiceOver.

What are Prototypes in JavaScript?

JavaScript
Artikkel (5 min)
Fra Petter Sæther Moen
01.12.2021

Have you ever inspected an object in your browser's console and stumbled upon the field [[Prototype]] or __proto__. Or maybe you have seen someone use the mystical prototype field on classes, such as String.prototype. Ever wondered what kind of sorcery this prototype is? Great! ️This article will hopefully make things a bit clearer, and make you an advanced prototype wizard. 🧙‍♂️

JavaScript Mystery

JavaScript
Artikkel (1 min)
Fra Svein Petter Gjøby
24.12.2020

From all of us behind javascript.christmas, to all of you: Merry Christmas! We really hope you've enjoyed our advent calendar. For our very last article in this advent calendar, we need your help saving christmas.

Json decoders in TypeScript

JavaScript
Artikkel (14 min)
Fra Tarjei Skjærset
23.12.2020

"JavaScript" != "Javascript"

JavaScript
Artikkel (3 min)
Fra Charlie Midtlyng
22.12.2020

When I studied computer science for five years there was a lot of mathematics. Equality was probably the simplest part. After ten years of working, I’ve done a lot of JavaScript. Equality is not the simplest part… Why?

The new Operator

JavaScript
Artikkel (6 min)
Fra Eirik Vigeland
21.12.2020

You probably came here to read about something cutting edge in JavaScript, but today we’re going to do a deep dive into one of the fundamental operators of JavaScript, new.

Sprinkle, Sprinkle, Little Card

JavaScript
Artikkel (4 min)
Fra Ida Marie Vestgøte Bosch
20.12.2020

I work on the internal applications in Bekk, including a front page that shows key information about employees and the company. One of the sections shows upcoming birthdays, so you can congratulate your colleagues on their big day. But something was missing. You know, that little extra that tends to light up people’s faces. How about some confetti bursting out the top of your head? 🎉

Debounce and throttle

JavaScript
Artikkel (5 min)
Fra Eirik Luka
19.12.2020

Ever wanted to implement a search as-you-type? What about transforming something while the user is scrolling. Just add an event listener for this works, but it can really impact the browser performance. Fetching from the server on every keypress isn't just unnecessary, it may also be hard on your server. This can be solved by two functions, debounce and throttle. Let's have a look at the difference between the two and how they can be implemented

Strict mode

JavaScript
Artikkel (5 min)
Fra Henrik Hermansen
18.12.2020

After years of disagreements about the long awaited next version of ECMAScript, on December 3, 2009, the 5th edition was finally released. A full 10 years after the previous version. With it came a lot of security improvements, one of which is known as "strict mode".

Six Ways To Level Up Your JavaScript

JavaScript
Artikkel (5 min)
Fra Erik Wendel
17.12.2020

You’ve done your fair share of JavaScript. You’ve shipped production code for years. You’re definitely no noob, nor a true expert. What’s the next step? How to find a learning path towards JavaScript mastery that actually motivates you to reach the next level? This article presents six alternative routes forward.

Let It Snow with Perlin Noise in p5.js

JavaScript
Artikkel (19 min)
Fra Anders Larsen
16.12.2020

Wintertime has always struck me as somewhat offset from the holiday season. The weather gets cold and dark, but snow seems to be in its primetime around January and February, at least here in Oslo. As a result, people around the world may have to resort to simply dreaming of a white Christmas. But regardless of where you live and the level of crystalline precipitation thereabouts, we have the technology to make it snow right now! In your browser at least.

Wrap up your CSS with Stitches!

JavaScript
Artikkel (4 min)
Fra Geir Sagberg
15.12.2020

Have you ever struggled with CSS? Have you found it hard to structure a large CSS codebase, even when using methodologies like BEM or OOCSS? Have you tried using CSS-in-JS solutions, but struggled with the setup or lack of typing? Or maybe you've used Tailwind, but find the initial bundle size intimidating, or the tooling to reduce it too complex? Stitches is a new CSS-in-JS library from Modulz and Christian Alfoni, creator of Cerebral and Overmind. It promises "Near-zero runtime, server-side rendering, multi-variant support, and best-in-class developer experience." We'll take a look at what this means, and how Stitches compares to existing CSS-in-JS solutions like Styled Components, Emotion and Material UI.