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 1362What 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 1914What will be the output of the code below? var Y = 1; if (function F(){}) { y += Typeof F;
} console.log(y); 1 1594What will be the output of the following code? //nfe (named function expression) var Foo = Function Bar() { return 7; }; typeof Bar();
1 1530
Explain the concept of scope hierarchy?
What does the ng stand for in angular?
What is deep linking in angular 4?
How do you connect to the database from jsp?
How can javascript codes be hidden from old browsers that don't support javascript?
How do you add an element at the end of an array?
Explain what is Angular Expression?
What are features of jquery or what can be done using jquery?
Name two types of React component?
What are the paremeter of jquery ajax method?
How to print only blank line of file?
What is the use of QueryString in Node.js?
What is .asp in html?
What is json object?
How performance improvements on the core in angular 8?