Salesforce Development Learning
Web Application: Frond End: which user view/see websites/Applications. Back End: By using backend applications and database servers users can perform operations. Ex: Amazon, Flipkart, Yesbank, Titan etcs. Web Technologies: Salesforce user interfaces: 1. Classic-before 2014 2. Lightning-2014 Front Salesforce technologies: 1. Classic: Visualforce Pages. 2. Lightning: Aura Components and Lightning web components. -------------------------------------------********************------------------------------------------------ Apex Fundamentals: System.debug('Hey I wrote code finally buddy'); or String greeting = 'My code'; system.debug('greeting'); things to know here: system.debug(); system-defined method used to printable statements string = datatype represents character values greeting= variable ////////////////////////////////////////////////////////////////////////////////////////////////////// Datatypes in Apex: 1. Primitive 2. Collections 3. Sobjects 4. Enum Pr...