We gonna use ECMAScript 2016’s new includes() method to determine whether an array contains a specific element. The new method includes(searchElement, fromIndex) function searches an…
3 CommentsCategory: Javascript
Promises can replace the asynchronous use of callbacks, and they provide several benefits over them. Basic Promise Usage A new Promise is created with the…
Leave a CommentIn my previous post I wrote about let keyword, in this post I would like to write about another new ECMAScript 6 keyword, const. There…
1 CommentIn this tutorial I will introduce you to new ECMAScript 6 let keyword. Variables declared with let keyword behave like other languages variables. These variables…
Leave a CommentJavaScript performance is becoming increasingly important, it is good to know basic instrumentation techniques. One of the basic instrumentation tool is console.time and console.timeEnd. console.time()…
Leave a CommentECMAScript 6 supports a generic Array method for converting an array-like object into one of its own.It is Array.from(). This method is very useful while…
Leave a CommentAngularJS isArray() is one of the useful ng function. This function is used to identify if a reference is array or not. This function return…
Leave a CommentDesign patterns offer developers ways to solve technical problems in a reusable and elegant way. Probably module pattern is the most used and widely accepted…
Leave a CommentIn this post i would like to explain about JavaScript Namespaces. Namespaces is nothing but grouping different functionality under the single unique name.As we know…
Leave a CommentThe purpose of the tutorial is to show you the differences between encodeURI() and encodeURIComponent() functions. encodeURIComponent() This method will encode the given string ,…
Leave a CommentWeb notifications API was designed to display END user notifications(desktop notifications), which allows alerting the user outside the context of a web page. This API…
Leave a CommentHere the simple AngularJS tutorial on creating Cascading DropDownList with Angular JS. Country: Select States: Select City: Select
9 CommentsIn this post i would like to write about Angular JS ngClassOdd,ngClassEven directives , by using this directories we can take effect only on odd…
1 CommentThis tutorial will show you, creating your own custom filters in AngularJS with simple steps and example. Angular filters provides a way to format the…
Leave a CommentHere I would will like to show you how to use Angular JS in CodeIgniter and I will show you how to get data from…
16 Comments