Skip to content

Category: Questions

Learn Javascript : Higher Order Function

anyone can explain this code..? especially “action(i)” in for scope. i’m new in JS Answer Higher order function are functions that take other functions as parameter(s). It is based on functions being so-called first-class-members in Javascript, which says, among other things, this: functions…

ExtJS – Where to put external libraries

If in my project I need to use external libraries, lets say JQuery, where should I put these libraries in the ExtJS application project directory structure? Is PROJECT/resources/scripts/ OK? Answer For example create a js folder on the same level as ExtJS app folder, and if you put a file script.js here, open…