Html inert property
Nov 17, 2023
Html
Fundamentals
The 'inert' property is a boolean value that can be quite nifty for managing accessibility and user interactions.
Sometimes I try to write stuff and it would end up here.
Nov 17, 2023
Html
Fundamentals
The 'inert' property is a boolean value that can be quite nifty for managing accessibility and user interactions.
Jun 4, 2023
Javascript
Fundamentals
The Set object is an unordered collection of unique values. It allows you to store any type of value, whether it be primitive data types or object references.
Jun 1, 2023
Javascript
Fundamentals
JavaScript Map is an ordered collection of key-value pairs, where each key is unique. Unlike plain objects Maps allow any value, including objects, as keys and provide built-in methods for efficient data manipulation.
Jun 1, 2023
Typescript
Fundamentals
Unions, in TypeScript, refer to a type that can represent values of different types. It allows us to combine multiple types into one, providing flexibility in variable assignments and function parameters.
May 29, 2023
Typescript
Fundamentals
One of the powerful features TypeScript offers is guard types. Guard types can be used to check for specific types of data within a given code block.
Dec 29, 2022
CSS
This is the styleguide I use when i write CSS. It's something I put together as a way too comfortably write modular, scalable and maintainable CSS.
Sep 20, 2021
CSS
Both rem and em are flexible and scalable units of measurement unlike the px unit. Both em and rem are translated by the browser into pixel values, depending on the font size you set for your design.
Feb 14, 2020
CSS
Sass is a superset of CSS that makes it possible to use variables, nesting, operators, inheritance and mixing among other things to style your websites and apps.