Intro to Variables
Intro to Variables
Variables are used to store information that can be referenced and manipulated in a program. In Apex, you declare a variable by specifying its data type and a name.
Example
// Declare a variable of type String String myName; // Assign a value to the variable myName = 'John Doe'; // Declare and initialize a variable in one line Integer myAge = 30;
Apex Code Editor
Welcome to Lightning Challenge!
Create an Account
Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.
Create accountHow It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Note
Complete this lesson challenge to earn points and track your progress. The code editor allows you to implement your solution, and the tests will verify if your code meets the requirements.