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

Manipulating A Complex Object Based On An Input Array

I have an complex object and based on an input array I need to modify properties inside of this com… Read more Manipulating A Complex Object Based On An Input Array

Why Do We Use `boy.prototype = New Human;` To Simulate Inheritance?

i don't get why everyone is using Boy.prototype = new Human; to simulate inheritance. Look, wha… Read more Why Do We Use `boy.prototype = New Human;` To Simulate Inheritance?

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?

Why Does Copying Eval Change Its Behaviour?

According to the rollupjs documentation: Simply 'copying' eval provides you with a functio… Read more Why Does Copying Eval Change Its Behaviour?

Accessing A Folder To List/play Clips One By One

I just want to know if there is an object to access a folder path which includes list of clips in j… Read more Accessing A Folder To List/play Clips One By One

Where Is The Immutable Binding Record Of The Identifier In A Named Function Expression Stored In Javascript?

Recently I ran into some interesting facts about named function expressions (NFE). I understand tha… Read more Where Is The Immutable Binding Record Of The Identifier In A Named Function Expression Stored In Javascript?

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

Custom Prototype Chain For A Function

I am just curious whether I can include an object into function prototype chain. What I mean: var t… Read more Custom Prototype Chain For A Function

Javascript Hoisting Var Vs Let

I'm learning some ES6 features and of course came across the let keyword and its new scope (dif… Read more Javascript Hoisting Var Vs Let

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

Ecmascript Multiple Prologue Directives

Certain ECMAScript environments permit switiching into a special mode by means of a Directive Prolo… Read more Ecmascript Multiple Prologue Directives

How To Implement JavaScript/ECMAScript "no LineTerminator Here" Rule In JavaCC?

I continue working on my JavaCC grammar for ECMAScript 5.1. It actually goes quite well, I think I&… Read more How To Implement JavaScript/ECMAScript "no LineTerminator Here" Rule In JavaCC?