Free Salesforce Certified JavaScript Developer I Exam Javascript-Developer-I Exam Practice Test
Javascript-Developer-I Exam Features
In Just $59 You can Access
- All Official Question Types
- Interactive Web-Based Practice Test Software
- No Installation or 3rd Party Software Required
- Customize your practice sessions (Free Demo)
- 24/7 Customer Support
Total Questions: 224
-
Refer to the code below:Const pi = 3.1415326,What is the data type of pi?
Answer: B Next Question -
A developer has an is Dog function that takes one argument cat. They want to schedule the function to run every minute.What is the correct syntax for scheduling this function?
Answer: A Next Question -
developer is trying to convince management that their team will benefit from usingNode.js for a backend server that they are going to create. The server will be a web server thathandles API requests from a website that the team has already built using HTML, CSS, andJavaScript.Which three benefits of Node.js can the developer use to persuade their manager?Choose 3 answers:
Answer: A, C, E Next Question -
Refer to the code below:let sayHello = () => {console.log ('Hello, world!');};Which code executes sayHello once, two minutes from now?
Answer: A Next Question -
Refer to the code below:const event = new CustomEvent(//Missing Code);obj.dispatchEvent(event);A developer needs to dispatch a custom event called update to send information aboutrecordId.Which two options could a developer insert at the placeholder in line 02 to achieve this?Choose 2 answers
Answer: A, D Next Question -
Refer to the code below:Let foodMenu1 = ['pizza', 'burger', 'French fries'];Let finalMenu = foodMenu1;finalMenu.push('Garlic bread');What is the value of foodMenu1 after the code executes?
Answer: B Next Question -
Which two options are core Node.js modules?Choose 2 answers
Answer: B, D Next Question -
Refer the code below.x=3.14;function myfunction() {'use strict';y=x;}z=x;myFunction();
-
Question 9
Cloud Kicks has a class to represent items for sale in an online store, as shown below:Class Item{constructor (name, price){this.name = name;this.price = price;}formattedPrice(){return 's' + String(this.price);}}A new business requirement comes in that requests a ClothingItem class that should have all ofthe properties and methods of the Item class but will also have properties that are specific toclothes.Which line of code properly declares the clothingItem class such that it inherits fromItem?
-
Question 10
A developer wants to define a function log to be used a few times on a single-file JavaScript script.01 // Line 1 replacement02 console.log(''LOG:', logInput);03 }Which two options can correctly replace line 01 and declare the function for use?Choose 2 answers
Total Questions: 224