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 (2290)
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 1426What 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 1977What will be the output of the code below? var Y = 1; if (function F(){}) { y += Typeof F;
} console.log(y); 1 1668What will be the output of the following code? //nfe (named function expression) var Foo = Function Bar() { return 7; }; typeof Bar();
1 1607
how does vb script help in web page designing? explain with example.
how can i connect to ms-access database, with ASP??
What is the difference between React Native and React?
What is array in javascript?
How do I open aspx files?
What language is nodejs?
Can we create Crystal Report object in QTP?If yes then what it is and what are its various properties?
What is html5 mode?
Comment on the scope of variables in perl.
Why is this project called "AngularJS"? Why is the namespace called "ng"?
What is javascript tree shaking?
Is javascript client side or server side?
Can you have a function within a function in javascript?
What kind of tools might you use in the build steps to optimize the compiled output of the react code?
Where is angular used?