Aloha Trailblazers,In this post, I'm sharing the code snippet for Coding with Confidence: The Fun Way to Learn Salesforce Apex tutorial series part 25 to 30:// * Control Flow statements: Used to control the flow of code execution. You can skip a block of code or have a block of code executed repeatedly. These...
Wednesday, 4 December 2024
Monday, 7 October 2024
07
Oct
Aloha Trailblazers,In this post, I'm sharing the code snippet for Coding with Confidence: The Fun Way to Learn Salesforce Apex tutorial series part 17 and above:// * Expressions and Operators in Apex
/*
? What is an Expression?
* An expression is a combination of variables, operators, and method calls that results...
Monday, 16 September 2024
16
Sep
Aloha Trailblazers,In this post, I'm sharing the code snippet for Coding with Confidence: The Fun Way to Learn Salesforce Apex tutorial series part 14 to 16:// * Constants and Enums in Apex
/*
? What is a Constant?
* A constant is a variable whose value cannot be updated after initialization. Constants are defined...
Tuesday, 6 August 2024
06
Aug
Hello Trailblazers,In this post, I'm sharing the code snippet for Coding with Confidence: The Fun Way to Learn Salesforce Apex tutorial series part 8 and above below:// * Collections in Apex
/*
* There are 3 types of collections in apex:
* 1. List
* 2. Set
* 3. Map
*/
// * List - Part 1
// * List:...
Tuesday, 30 April 2024
30
Apr
Hello Trailblazers,In this post, we're going to learn about Einstein Search in detail. This post is contributed by Dorian Sabitov who's a 4x certified Salesforce Admin and Developer. You can learn more about Dorian in the Author's Bio section at the end. I really liked the post as I reviewed it and I hope you'll...
Thursday, 25 April 2024
25
Apr
Hello Trailblazers,In this post, I'm sharing the code snippet for Coding with Confidence: The Fun Way to Learn Salesforce Apex tutorial series part 2 to 7 below:// * Variables & Data Types in Apex
/*
? What is a variable?
* A variable is simply a named storage/memory location that contains a value. In apex,...