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 MoreJquery Mobile – Book Review
First of all, this is my first post in my new blog, please review it and send me your feedback, your feedback very important for me. Since the beginning of this year I decided to go deep in the the mobile and tablet development, and after i search for the best framework can help me, its Jquery Mobile. Before couple of weeks i have finished read jQuery Mobile Book- by…
Read More