🚀 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 💪

TypeScript enum

Enums in TypeScript are a way of representing a fixed set of named values. They can be defined using the keyword enum. Enums can be defined with both string and numeric values....

December 15, 2022 · 1 min · Coderslang Master

CSS Border Color

When it comes to styling the border of an element on a web page, the CSS border-color property is one of the most commonly used properties. The border-color property allows you to specify the color of the border of an element....

December 14, 2022 · 1 min · Coderslang Master

CSS uppercase

CSS has a property called text-transform which can be used to make text appear in all uppercase letters. Here’s an example: p { text-transform: uppercase; } This will make all the text inside of any <p> elements appear in uppercase letters....

December 13, 2022 · 1 min · Coderslang Master

HTML Subscript

HTML subscript is a tag that allows you to create text that appears below the baseline of the surrounding text. This can be useful for creating mathematical or chemical formulas, as well as for other occasions where you want to include small text next to regular text....

December 12, 2022 · 1 min · Coderslang Master

HTML Superscript

HTML superscript is a tag that can be used to create text that appears slightly above the normal line of text. This is useful for things like mathematical formulas or chemical equations....

December 11, 2022 · 1 min · Coderslang Master

JavaScript onclick

One of the most popular uses of JavaScript is to add interactivity to web pages. Event handlers are a way to run some JavaScript code when an event occurs. The onclick event handler runs a function when an element is clicked on....

December 10, 2022 · 1 min · Coderslang Master

HTML Footer

A footer is the bottom section of a document. It typically contains information such as the author’s name, the page number, or the date. You can create a footer in HTML by using the <footer> element....

December 9, 2022 · 1 min · Coderslang Master

How to Fix Fatal JavaScript Error on Discord

If you’re a Discord user, you’ve probably seen the occasional “Fatal JavaScript Error” message pop up. This error is usually caused by a bad internet connection or some temporary problem on a Discord server....

December 8, 2022 · 2 min · Coderslang Master

Procedural Programming

Procedural programming is a type of programming in which the steps taken to solve a problem are represented as a list of instructions. This type of programming is often used to create software programs that follow a set of rules or procedures....

December 7, 2022 · 3 min · Coderslang Master

JavaScript Set

JavaScript Set is a collection of unique values. It can be used to store data in a more structured way than JavaScript Array object. A Set object can be created using new Set() constructor....

December 6, 2022 · 2 min · Coderslang Master