Skip to main content

Path for JavaScript Developer - 1 Salesforce Certification


 Recently, I have cleared my  JavaScript Developer - 1 Certification on 9th May 2021. Hurray!!!

And after clearing that exam I feel to create a path for my friends because I found that certification 

little tougher, So I was willing to share my path to clear the certification.

Agenda

What paths I followed to clear the JavaScript developer I certification. What are the prerequisites and How much time it will take for me to learn all these and what effects or knowledge I gain from this certification?

Salesforce has come up with this exclusive certification with JavaScript language which drives me to

learn and earn this which eventually will help me on LWC and other open-source development.

This certification is in high demand nowadays which motivates me to pass and share my tips.

 

What things I know before start preparing for the certification:

 

The JavaScript Developer I exam is intended for individuals who have the knowledge, skills, and

experience to develop front-end and/or back-end JavaScript applications for the web stack. 

  1. Knowledge of Salesforce Platform.

  2. Should have good hands-on experience with Javascript.

  3. Should know how we use Javascript for development in salesforce.

  4. Should be aware of using Lightning Components.

 

As Salesforce continues to build and support more open source technologies e.g Lightning Web Components and becomes more involved with ECMA TC39.


So, Before Moving forward, prepare yourself for deep diving into the fundamentals of JavaScript.


Exam Details:

This certification is comprised of two parts as below:

  1. Multiple Choice Exam (Main Exam of Javascript Developer 1 Certification held by Salesforce).

  2. Lightning Web Component Superbadge.


Multiple Choice Questions:

The exam consists of 60 MCQ. with allotted timing of 105 min and the required passing percentage is 65% at least 39-40 questions.

For appearing in exams there is no prerequisite.

But, for earning the certification PDF we need to complete the LightningWeb Components Superbadge.


Start Preparing for the exam:


Trailhead Trail Mix and Trail:

  1. https://trailhead.salesforce.com/content/learn/trails/study-for-the-salesforce-javascript-developer-i-exam

  2. https://trailhead.salesforce.com/en/users/strailhead/trailmixes/prepare-for-your-salesforce-javascript-developer-i-credential

  3. https://trailhead.salesforce.com/content/learn/superbadges/superbadge_lwc_specialist?trailmix_creator_id=strailhead&trailmix_slug=prepare-for-your-salesforce-javascript-developer-i-credential

Blogs and Resources I found helpful for clearing the exam:



Key Topics for certification:

Salesforce Exams are made up of different topics, comprised of different weightings for each.


1. Variables, Types, Collections: 23%

2. Objects, Functions, and Classes: 25%

3. Browser and Events 17%​

4. Debugging and Error Handling: 7%​

5. Asynchronous Programming: 13%:

6. Server-Side JavaScript 8%:

7. Testing: 8%:


Study Pattern:


Follow https://developer.mozilla.org/en-US/docs/Web/JavaScript MDN standard documentation for learning as a beginner. And for practice use the salesforce standard playground.

https://developer.salesforce.com/docs/component-library/tools/playground.


Exam Preparation:


First, from an exam and certification point of view, we should have a great theory and practical

knowledge (minimum 6 months of experience in Lightning Component Development).

Focus more on the keywords and short ways of doing work. First, think and then start coding.

Comments

Post a Comment

Popular posts from this blog

Using Data - Attributes in Lightning Web Component (LWC)`

  Agenda      While working with Salesforce data we need to play with Id’s (Identifiers). An ID can be associated with a Record or with a specifier. While working with records when we need to make changes or view any particular record details, we need their ID’s, as I describe in my previous blog’s how can we show or edit any salesforce record with the help of Basic components of Salesforce.  To create forms that let users view, edit, and create Salesforce records, use Lightning-record-form, Lightning-record-edit-form, and Lightning-record-view form components. And To use these components we need Salesforce Record ID. Blog Details This Blog gives us a brief about how can we get a particular record Id or value after any event using Data - Attributes.  What we are going to do In this blog, we use Data - Attribute functionality from HTML5  in our Lightning Web Component and use data attribute to get...

Displaying User Level’s Dynamically In Lightning Web Component

  Agenda I am writing this blog, to display dynamic user data beautifully, It enables each user to see the users they need to report. With this dynamic component, you can control data visibility without having to create a separate component as well, with its own running user.  Now, It’s time to show the user’s of our organization dynamically their role in a beautiful way. How does it work? You fetch the User’s record with a simple Apex SOQL query and just displaying details Dynamically over a Lightning Web Component, And place that component where ever you want. Requirements: You need to have access to your org. Should have the VS Code Installed in your system. You should have some basic knowledge of Lightning Web Component. About Lightning Web Component (LWC): Lightning Web Components are lightweight custom elements based on native HTML and Modern JavaScript. Lightning Web Compone...