by MoreOnFew | Sep 12, 2018 | Javascript, Web |
As a part of ES6 (also known as ECMAScript 2015 or ECMAScript 6), there are a couple of new JavaScript features and methods introduced. Today we would be concentrating on just two of them i.e Number.isInteger() and Number.isSafeInteger(). What is Number.isInteger() ?...
by MoreOnFew | Jun 28, 2016 | Javascript, Web |
While working with NodeJs you’ll notice that many a times you might not be able to install or update while working behind a proxy network like the corporate web proxy of your office etc. Basically you might notice that the commands like npm install is not working....
by MoreOnFew | Jun 23, 2016 | Javascript, Web |
Arrays are widely and commonly used in JavaScript. Especially if you are developing a dynamic app, there are very high chances that you might use Arrays in JavaScript. However, many a times I’ve noticed that people don’t use the Array related methods...
by MoreOnFew | May 17, 2016 | Javascript, Web |
RequireJs is a very helpful JavaScript Module Loader. If you’ve been working on BackboneJS, AngularJs or KnockoutJs you would have most likely come across RequireJs. Also it is very likely that while working with RequireJs you would have come across the Error...
by MoreOnFew | Apr 29, 2016 | Javascript, jQuery, Web |
Many a time you might have come across a scenario where you would want to remove multiple attributes from an element. For example, consider the following DIV, <div id=”#rightSection” data-id=”xyz” data-module=”abc”> …...
by MoreOnFew | Mar 20, 2014 | Javascript, Web |
I’m sure you must have had a scenario where you had to join or merge two different Arrays. Well, let me tell you that its an easy task. JavaScript has a native method Array.concat() which does it. Let’s take a look at the syntax....