Online Access Free JavaScript-Developer-I Exam Questions
Exam Code: | JavaScript-Developer-I |
Exam Name: | Salesforce Certified JavaScript Developer I Exam |
Certification Provider: | Salesforce |
Free Question Number: | 123 |
Posted: | Apr 20, 2022 |
# of views: | 5008 |
Go To JavaScript-Developer-I Questions |
Recent Comments (The most recent comments are at the top.)
The app version of JavaScript-Developer-I exam guide is very convient to me on my phone, because i can practice when i'm waitting for someone.
No.# Answer A
class Student{
constructor(name)
{
this.name=name;
}
taketest()
{
console.log(`${this.name} got 70% on test`);
}
}
class beststudent extends Student
{
constructor(name)
{
super(name);
this.name='Better student '+name;
}
taketest(){
console.log(`${this.name} got 100% on test`);
}
}
let student=new beststudent('Jackie');
student.taketest();