This is a Javascript frameworks comparison sheet i did and hope it will answer your questions to decide which framework fit your needs. Here is the link: Frameworks Sheet comparison BTW, i chose Vuejs.
Read MoreVujs documentation summary
Today i finished from Vuejs documentation and i summarised it as a tags to review it quickly. The data and the DOM are now linked, and everything is now reactive. Directive: are prefixed with v- to indicate that they are special attributes provided by Vue and they apply special reactive behavior to the rendered DOM. v-bind directive, EX:: v-bind:title to bind data into title attribute for element. Conditionl:: v-if…
Read MoreJavaScript ES5 Summary
This is the summary of ES5 as a tags summarized from Speaking Javascript Book. Strict mode. Accessors(Getter & Setter). New Functios: Object.create() Object.getPrototypeOf() Object.defineProperty() Object.defineProperties() Object.getOwnPropertyDescriptor() Object.keys() Object.getOwnPropertyNames() Object.preventExtensions() Object.isExtensible() Object.seal() Object.isSealed() Object.freeze() Object.isFrozen() Function.prototype.bind() New Methods: Array.isArray() Array.prototype.every() Array.prototype.filter() Array.prototype.forEach() Array.prototype.indexOf() Array.prototype.lastIndexOf() Array.prototype.map() Array.prototype.reduce() Array.prototype.some() Date.now() Date.prototype.toISOString() JSON.parse(). JSON.stringify(). Object.prototype.toJSON() and you can checked the Basic and Advanced topics also summarized from this Book: Javascript basics Advanced javascript
Read MoreAdvanced Javascript as a Tags
This is the advanced in Javascript as a tags, summarized from Speaking Javascript Book. ####################### Syntax ################# The normal (nonstrict) mode is sometimes called “sloppy mode.” Variables Must Be Declared in Strict Mode. in strict mode code, functions can only be declared at top level or immediately within another function. Due to strict mode, you get a warning when you accidentally forget new and call it as a function….
Read MoreJavascript Basics as a Tags
This is a Javascript basics as a tags, summarized from Speaking Javascript Book. Primitive:: Numbers, Boolean, String, Undefined & Null Objects:: plain object, array, regular expression Primitive :: (immutable) Properties can’t be changed, added, or removed Objects :: (Mutable) change, add, and remove properties undefined means “no value.” Uninitialized variables are undefined null means “no object” undefined and null are considered false false, 0, NaN, and ” are also…
Read MoreAngular js 1.x – Main Concepts presented in FronteersJo Meetup #5
Introduced the main concepts of AngularJS framework. this slides presented in FronteersJo meetup (12 Nov).
Read More