ASP (565)
CGI Perl (498)
JavaScript (1409)
VB Script (599)
JSP (733)
Shell Script (465)
Tcl (27)
Awk (108)
AJAX (338)
Ruby on Rails (259)
AngularJS (2297)
jQuery (647)
JSON (175)
Node.js (721)
React.js (389)
Scripts AllOther (50) How do you extend classes Code snippet: const circle = { radius: 20, diameter() { return this.radius * 2; }, perimeter: () => 2 * Math.PI * this.radius };
1 1366What is the output of below code var car = new Vehicle("Honda", "white", "2010", "UK"); console.log(car); function Vehicle(model, color, year, country) { this.model = model; this.color = color; this.year = year; this.country = country; }
1 1916What will be the output of the code below? var Y = 1; if (function F(){}) { y += Typeof F;
} console.log(y); 1 1596What will be the output of the following code? //nfe (named function expression) var Foo = Function Bar() { return 7; }; typeof Bar();
1 1533
How to load select box during page initialization using AngularJS?
What are the implicit, internal el jsp objects and their differences from jsp objects?
Define application-scope?
How to call a function inside a function in javascript?
What are the data types in js?
What is a router in react.js?
What is callback?
What is data type in javascript?
Explain “use strict” ?
What does echo mean in scripting?
What is html5 mode?
Explain the each() function?
Which keyword is used to declare a variable in the vbscript language?
Why is javascript so popular?
What is event binding in angular?