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 1348What 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 1900What will be the output of the code below? var Y = 1; if (function F(){}) { y += Typeof F;
} console.log(y); 1 1579What will be the output of the following code? //nfe (named function expression) var Foo = Function Bar() { return 7; }; typeof Bar();
1 1515
Describe the exit codes of node.js.
What is out println in jsp?
How to deactivate el usage on jsp?
What is a jsp and what is it used for?
Can we define a class in a jsp page?
What are different ways to create objects?
How do you close a file using node.js?
What does dollar sign ($) means in jquery? : jquery mobile
What is shouldcomponentupdate and when is used in react.js?
When does circular reference occur?
What javascript method would convert the string “20” to an integer (on the fly) so “20” + 20 = 40?
Define say() function in perl?
Explain the significance of store in redux?
Mention the environments where vbscript could be run?
Explain strftime() function in perl?