JavaScript for LWC: Array Methods
Array in JavaScript is most fundamental and widely used data structure. It allows to store multiple values in single variable. Arrays can hold various data types such as string, number, object and other array...
Array in JavaScript is most fundamental and widely used data structure. It allows to store multiple values in single variable. Arrays can hold various data types such as string, number, object and other array...
String is a series of characters which are present within a single or double quotes. JavaScript provides various built in string methods to manipulate and perform transformations on string. We can use spread operator...
Arrow function introduced in ES6. It allows us to write shorter and simpler syntax. It provides unique feature regarding handling of this. They are typically used for short, one-liner operations and allow for implicit...
Spread Operator introduced in ES6. It’s syntax is (…). It allows to expand or unpack elements of iterable, such as array, set, map and strings.
DML stands for Data Manipulation Language. Read and Write operation on salesforce database achieved by SOQL queries and DML Operations respectively.
SObject refers to any object that can stored in Lightning Platform Database. In Salesforce, objects function similarly to tables in a database, with fields representing columns and records representing rows within these objects.
Variables are used to store the data. JavaScript is a dynamically typed language hence, type of variable decided at runtime. We can declare variables is JavaScript by three ways using var, let and const
LWC is a modern programming model to build lightning components in salesforce platform. It is a framework for building web components using modern web standards like JavaScript, HTML and CSS. These web components are reusable building blocks encapsulated in their own DOM structure.
There are three main types of collections List, Set, Map. These collections provide powerful tools for working with data in apex. They allows developers to efficiently manage and manipulate data within their application.
It is a case-insensitive language to avoid confusion with SOQL and SOSL queries as they are case-insensitive. There are 12 primitive data types in apex. As follows: Blob, Boolean, Date, DateTime, Double, Decimal, Integer, ID, Object, Long, String, Time.