Skip to content Skip to sidebar Skip to footer
Showing posts with the label Ecmascript 5

Functional Javascript Programming - Making A Modal, A Popup, And Refactoring It

I'm using ES5. I'm learning JavaScript. I did this modal, but I want to re-factor the code … Read more Functional Javascript Programming - Making A Modal, A Popup, And Refactoring It

Does Javascript (ecmascript5) Strict Mode Offer Significant Performance Advantages To Merit Widespread Use?

I'm reading up a bit on using Strict Mode for JavaScript and it seems that, generally speaking,… Read more Does Javascript (ecmascript5) Strict Mode Offer Significant Performance Advantages To Merit Widespread Use?

Transpile To Es5 Corrupt Js Library In Angular 6 Project

I am trying to use Dygraph library in an Angular 6 project. It works perfectly in Chrome / FF, howe… Read more Transpile To Es5 Corrupt Js Library In Angular 6 Project

JetBrains WebStorm Intellisense

When I see the intellisense menu in WebStorm, it shows little circular icons with lettering on them… Read more JetBrains WebStorm Intellisense

ES5 | When To Use Null And When To Use Undefined

Possible Duplicate: Javascript null or undefined null is a reserved word but not a keyword. Hence … Read more ES5 | When To Use Null And When To Use Undefined

Using Try Catch On Error Generated By Asynchronous Callback Function

I am trying to catch an error caused by an async javascript callback function, try{ setTimeout(()… Read more Using Try Catch On Error Generated By Asynchronous Callback Function