Open in app

Sign In

Write

Sign In

Coding Beauty
Coding Beauty

1K Followers

Home

About

Published in JavaScript in Plain English

·Pinned

7 Unnecessary VSCode Extensions You Should Uninstall Now

The number of VSCode extensions you have installed is one of the main reasons why you might find the editor slow and power-hungry, as every new extension added increases the app’s memory and CPU usage. It’s important to keep this number as low as possible to minimize this resource consumption…

Vscode

9 min read

7 Unnecessary VSCode Extensions You Should Uninstall Now
7 Unnecessary VSCode Extensions You Should Uninstall Now
Vscode

9 min read


Published in JavaScript in Plain English

·Pinned

10 Must-Have VSCode Extensions for Web Development

Install these powerful VSCode extensions to significantly improve your productivity during web development. — Visual Studio Code is one of the most widely-used source code editors out there, with over 136k stars on GitHub. Its popularity comes about due to its lightness, flexibility, open-source nature, simplicity, and extensibility. Speaking of extensibility, VSCode has thousands of extensions you can install to ramp up your developer…

Java Script

7 min read

10 Must-Have VSCode Extensions for Web Development
10 Must-Have VSCode Extensions for Web Development
Java Script

7 min read


Published in JavaScript in Plain English

·Pinned

14 Sensational JavaScript One-Liners That Will Show Your Wizardry

We look at several quick and concise one-liner solutions to various problems that arise frequently in JavaScript. — In programming, there are usually multiple ways to solve the same problem. These solutions can vary in different areas, such as the length, performance, algorithm used, readability, and so on. In this article, we’ll be looking at several quick and concise one-liner solutions to various problems that frequently arise in…

Java Script

11 min read

14 Sensational JavaScript One-Liners That Will Show Your Wizardry
14 Sensational JavaScript One-Liners That Will Show Your Wizardry
Java Script

11 min read


Published in JavaScript in Plain English

·Pinned

11 Amazing New JavaScript Features in ES13

This blog post is available as a convenient and portable e-book that you can take with you anywhere. Click here to get a copy. Like a lot of other programming languages, JavaScript is constantly evolving. …

Java Script

9 min read

11 Amazing New JavaScript Features in ES13
11 Amazing New JavaScript Features in ES13
Java Script

9 min read


Published in JavaScript in Plain English

·Pinned

10+ Rarely Used JavaScript Console Methods

You’ve heard of console.log() and probably use it all the time. It's very popular, and tools like Visual Studio Intellicode usually recommend it before any other console method when typing in an IDE:

Java Script

6 min read

10+ Rarely Used JavaScript Console Methods
10+ Rarely Used JavaScript Console Methods
Java Script

6 min read


Published in JavaScript in Plain English

·6 days ago

How to Check if a Variable is a String in JavaScript

To check if a variable is a string in JavaScript, use the typeof operator, i.e., if (typeof variable === 'string'). If the typeof variable returns 'string', then the variable is a string. Otherwise, it is not a string. For example: JavaScript const variable = 'Coding Beauty'; if (typeof variable === 'string')…

Java Script

3 min read

How to Check if a Variable is a String in JavaScript
How to Check if a Variable is a String in JavaScript
Java Script

3 min read


Published in JavaScript in Plain English

·Jan 23

How to Fix the “Unknown file extension .ts” Error in ts-node

The “Unknown file extension .ts” error occurs in ts-node occurs when "type": "module" is set in your package.json file. To fix it, run the TypeScript file with ts-node --esm my-file.ts, or remove "type": "module" from your package.json file. For example, in a project with this package.json file: package.json {…

Typescript

3 min read

How to Fix the “Unknown file extension .ts” Error in ts-node
How to Fix the “Unknown file extension .ts” Error in ts-node
Typescript

3 min read


Published in JavaScript in Plain English

·Jan 16

How to Display a Line Break Without the <br> Tag in HTML

To create a line break in HTML without the <br> tag, set the white-space property of the text container to pre-wrap. For example: HTML <div id="box"> Lorem Ipsum Lorem Ipsum Lorem Ipsum </div> CSS #box { white-space: pre-wrap; }

HTML

3 min read

How to Display a Line Break Without the <br> Tag in HTML
How to Display a Line Break Without the <br> Tag in HTML
HTML

3 min read


Published in JavaScript in Plain English

·Jan 12

How to Simulate a Mouse Click With JavaScript

In this article, we’ll learn multiple ways to easily simulate a mouse click or tap on an element in the HTML DOM, using JavaScript. Use click() method This is the easiest and most basic method to simulate a mouse click on an element. Every HTMLElement has a click() method that can be used…

Java Script

6 min read

How to Simulate a Mouse Click With JavaScript
How to Simulate a Mouse Click With JavaScript
Java Script

6 min read


Published in JavaScript in Plain English

·Jan 12

How to Get an Object Value By Key in TypeScript

You can easily get an object’s value by a key in Typescript using bracket notation, i.e., obj['key'], obj[myVar], etc. If the key exists, you will get the corresponding value back. For example: TypeScript type Car = { name: string; maxSpeed: number; color: string; }; const car: Car = {…

Typescript

3 min read

How to Get an Object Value By Key in TypeScript
How to Get an Object Value By Key in TypeScript
Typescript

3 min read

Coding Beauty

Coding Beauty

1K Followers

Get new web development tips and tutorials every week: https://cbdev.link/a75050

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech