function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Wyatt SusichWyatt Susich 

Should I learn Apex or Visualforce first?

Hi,

I'm just wondering which order I should learn these in, and if it matters.

Thanks,
Wyatt
sailaja majji 5sailaja majji 5
Hi ,

Learning Apex first is helpful .Since visual force has some concepts which need help of apex like custom controllers ,extensions and so on  .
Apex :
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/
Visual Force :
https://developer.salesforce.com/docs/atlas.en-us.workbook_vf.meta/workbook_vf/

To get confidence initially go for TrailHead sessions .You will be engaged while learning .

Thanks
 
varun_vatsavarun_vatsa
Hi,

If you ever need to write a VF page, would mean you need customisation and for customisations we need custom controllers means "Apex" let it be for the purpose of showing some data on VF page via Apex Controller, or adding some complex validation rule (Without even needing a VF Page) via "Triggers".

So my recommendation and learning path should include getting familiar with Apex prior to VF pages.

Thanks