JavaScript is the most used language of this time on the planet earth.
-
Everything is object in JavaScript, even function is also a first class object.
- You can pass function object as an argument to a function
- Function object can be returned from a function
- Function may assigned to a variable
- Function May be stored in an object or array
- JavaScript programs use Unicode character set (UTF-16) which is super-set of ASCII and Latin-1 and supports virtually every written language currently used on the planet
- NULL is an object in JavaScript
- NaN is a number, if we say typeof NaN, then it would be number
- typeof Infinity is a number
- Function can execute themselves. We call them self executing function. This is very important concept/feature which is used at many places
-
using typeof we can not get if any variable is of type array. So how we can determine if a variable is of type array?
var ar = [1,2,3]; ar instanceof Array // this will return true because ar is of type array
There is one more way to get the type of any variable:var ar = [1,2,3]; Object.prototype.toString.call(ar); // "[object Array]"
You also like to know about:
- Do you know what happens when you hit url www.goolge.com?
- Know about Debouncing & Throttling
- AngularJS advanced trick and techniques
- Restrict input to allow only required value (jQuery plugin for input type validation)
- Spread operator or Rest parameter or Ellipsis in JavaScript
- Why call and apply two methods available in JavaScript
- Automatic Form Input Validation for complete site
- Number of ways you can create function in JavaScript +what are they called
- JavaScript Native objects
- How to Create private function in JavaScript
- functions as first class object in JavaScript
- Object Oriented concept in JavaScript
- Advanced JavaScript questions
- One good way to declare Global Variables in JavaScript
- how to align elements in a row with equal space around
- Closures in JavaScript
- AJAX call in AngularJS for cross domain service using JSONP
- Cross Site Scripting in WCF Web Service. How to use AJAX in JavaScript to Get/Consume JSON from WCF in C#
- How to add AngularJS in rails application
- Git configuration all about
- Pass XML file in stored procedure as a input parameter from C#
- XML Parser in SQL Server (T-SQL), How to parse XML in SQL
- Wish your friend with your own words and love
- Create Message in Hindi by typing in Hinglish
- Convert Multiline Text Into Single Line for HTML page