Beginners guide to classes in JavaScript

Posted: 2021-08-13 04:28:15
Source: https://linuxhint.com/javascript-classes-beginners-guide/

Classes are a template/blueprint for objects. They simplify the process of creating multiple objects with similar properties and methods. Classes are merely syntactic sugar in JavaScript, built on top of prototypes, and work in the same manner behind the scenes. How to use classes in JavaScript is explained in this article.

How do I change the GRUB timeout in Linux?

Posted: 2021-08-13 04:27:00
Source: https://linuxhint.com/change-grub-timeout-linux/

GRUB (Grand Unified Bootloader) is a bootloader that allows the user to choose the kernel, OS, or boot mode. Grub is the first program that runs when the user turns on his computer. The bootloader task is to boot the correct operating system or kernel previous to system initialization. How to change the GRUB timeout in Linux is explained in this article.

How to fix “a JavaScript error occurred in the main process” error in Discord

Posted: 2021-08-13 04:25:28
Source: https://linuxhint.com/fix-javascript-main-process-error-discord/

While using Discord, sometimes we come across an error titled “A JavaScript error occurred in the main process.” The error window contains information about the error that a casual user cannot interpret. This error could be because of several different reasons. How to fix this error in Discord is explained in this article.

JavaScript Date Object – Explained

Posted: 2021-08-13 04:22:49
Source: https://linuxhint.com/javascript-date-object/

JavaScript has a built-in datatype that creates dynamic dates or stores current, previous, or future dates. Once the date object is created, you can apply different operations to it. You can show a timer on your website using the date object. JavaScript Date Object is explained in this article.

JavaScript Array Filter Function

Posted: 2021-08-13 04:19:26
Source: https://linuxhint.com/array-filter-function-javascript/

Javascript provides many built-in array functions for getting tasks done quickly and in an efficient way. Javascript filter() function is one of those popular functions used to iterate over an array's elements and get the desired result. JavaScript Array Filter() Function is explained in this article.

How to Install Odoo 14 on Ubuntu 20.04

Posted: 2021-08-13 04:18:26
Source: https://linoxide.com/how-to-install-odoo-14-on-ubuntu-20-04/

Top 10 JavaScript Online Courses

Posted: 2021-08-13 04:17:57
Source: https://linuxhint.com/best-javascript-online-courses/

JavaScript is a scripting language widely used across the internet to enhance the user experience by adding interactive and dynamic elements to a webpage. It converts static pages into dynamic ones that catch the user's attention. JavaScript can run without communicating with the server as the client-side’s source code is processed by the client's browser. Top 10 JavaScript Online Courses are reviewed in this article.

Top 5 JavaScript Online Code Editors

Posted: 2021-08-13 04:14:24
Source: https://linuxhint.com/best-online-code-editors-javascript/

Online code editors allow you to start writing code without any setup. These code editors can be accessed from anywhere, anytime. Most of them are free and have collaboration features that allow remote team members to contribute to a project easily. Top 5 JavaScript Online Code Editors are reviewed in this article.

Top 5 JavaScript Code Editors and IDEs

Posted: 2021-08-13 04:04:44
Source: https://linuxhint.com/best-code-editors-ides-javascript/

Code editors are text editor programs specifically designed to write and edit software source code while IDEs provide tools and facilities required for software development; IDEs consist of code editors debuggers and build automation tools. This increases the productivity of the developers and makes their lives easier. Top 5 JavaScript Code Editors and IDEs are reviewed in this article.

What is the typeof Operator in JavaScript?

Posted: 2021-08-13 04:03:35
Source: https://linuxhint.com/typeof-operator-javascript/

The typeof is an operator present in most programming languages and is used to check the datatype of an operand. Data types are a classification of data that defines how data can be stored and manipulated. Each programming language has built-in data types which might be different from other programming languages. typeof Operator in JavaScript is explained in this article.

JavaScript For Loop – Tutorial for Beginners

Posted: 2021-08-13 04:01:12
Source: https://linuxhint.com/for-loop-javascript/

In programming languages, loops are used to run a block of code repeatedly until a specific condition is satisfied. JavaScript is a text-based scripting language commonly used to add dynamic and interactive elements to static websites to make them visually appealing. Loops have different syntax in each programming language, but the basic concept (logic) remains the same. JavaScript For Loop is explained in this article.

JavaScript forEach Loop

Posted: 2021-08-13 03:58:31
Source: https://linuxhint.com/foreach-loop-javascript/

The forEach loop is a special type of loop present in most programming languages used to loop through the elements of an array. It is mostly used to replace the loop to avoid potential off-by-one bugs/errors as it does not have a counter. It proves useful when we need to perform different actions on each element of the loop individually. JavaScript forEach Loop is explained in this article.

JavaScript Functions – Explained with Examples for Beginners

Posted: 2021-08-13 03:56:39
Source: https://linuxhint.com/javascript-functions/

Functions are subprograms in a program consisting of blocks of code used to perform certain tasks. Generally, functions take a value as a parameter, process it, and then return an output. They can be used for dividing complex problems into smaller chunks. In this article, JavaScript Functions are explained with examples.

JavaScript If else and else if statements – Explained

Posted: 2021-08-13 03:53:15
Source: https://linuxhint.com/if-else-else-if-statements-javascript/

JavaScript is a text-based scripting/programming language used in front and back-end development. The if statements are conditional statements that make decisions based on the defined criteria. These statements perform different actions under different conditions; if the defined/specified criteria are met, the block of code in the body of the if statement will be executed. JavaScript If else and else if statements are explained in this article.

JavaScript Interview Questions

Posted: 2021-08-13 03:51:13
Source: https://linuxhint.com/javascript-interview-questions/

JavaScript is an object-based scripting language used to develop and manage visually appealing, dynamic, and interactive content on web applications such as a carousel (slide show). It is used on both the front end/client side and back end/server side. JavaScript developers are in high demand all around the globe. JavaScript Interview Questions are listed in this article.

JavaScript Objects/Dictionary – Explained

Posted: 2021-08-13 03:45:31
Source: https://linuxhint.com/javascript-objects-dictionary/

Objects in JavaScript are data types used to store related data. They are a collection of named values or variables used to store multiple values; these values are stored in the form of name:value pairs. Objects in real life have different properties and can do different tasks. JavaScript Objects/Dictionary is explained in this article.

How to use JavaScript Array Reduce Function

Posted: 2021-08-13 03:44:04
Source: https://linuxhint.com/javascript-array-reduce-function/

Javascript provides many built-in array functions for getting tasks done quickly and in an efficient way. Javascript reduce() function is one of those popular functions used to iterate over an array’s elements and get the desired result. Javascript’s reduce() function for the array reduces the array into a single output value. How to use JavaScript Array Reduce Function is explained in this article.

JavaScript String includes/contains

Posted: 2021-08-13 03:41:57
Source: https://linuxhint.com/javascript-string-includes-contains/

The includes() method is a searching algorithm used to find a substring within a string or to find elements within an array. includes() method returns boolean values (It returns either true or false). So it can be used as the condition for an if statement or a loop. This article explains how to use the includes() method to find a substring in a string in JavaScript.

JavaScript Switch Statement – Explained

Posted: 2021-08-13 03:39:40
Source: https://linuxhint.com/javascript-switch-statement/

A switch statement evaluates the value of a variable or an expression against a set of values. Each value in a switch statement is called a case. When a case is matched with the variable's value, the code present in the body of that case statement is executed. Switch statements are used to check multiple conditions on a single variable. Switch statements are an efficient alternative to if-else statements. JavaScript Switch Statement is explained in this article.

JavaScript vs. Java

Posted: 2021-08-13 03:35:42
Source: https://linuxhint.com/javascript-vs-java/

JavaScript is an object-based scripting language used to add interactive and dynamic designs to static HTML-based web applications. It can even be used for server-side development. Java is a class-based, object-oriented programming language. It can run on almost all platforms as it uses a virtual machine platform to run its compiled code. The difference between JavaScript and Java is explained in this article.

1 ... 635 636 637 638 ... 726