This post is a part 47 of Intel XDK Complete Tutorial post series. Google Analytics is the World’s best website analytics platform. You can also integrate Google Analytics in Intel XDK apps to find usage information of your app. In this tutorial I will show you how to integrate Google Analytics in an Intel XDK […]
This post is a part 5 of ECMAScript 6 Complete Tutorial post series. ES6 introduced “…” operator which is also called as spread operator. When “…” operator is applied on an array it expands the array into multiple variables in syntax wise. And when its applied to an function argument it makes the function argument […]
This post is a part 4 of ECMAScript 6 Complete Tutorial post series. ES6 provides a new syntax that can be used to define default values to function parameters: function myFunction(x = 1, y = 2, z = 3) { console.log(x, y, z); // Output "6 7 3" } myFunction(6,7); Also, passing undefined […]
This post is a part 3 of ECMAScript 6 Complete Tutorial post series. There were many different ways purposed by JavaScript developers for returning multiple values in an function. But ECMAScript 6 has come up with an easy way to do it. Here is an code example of how to return multiple values using ES6: […]
This post is a part 2 of ECMAScript 6 Complete Tutorial post series. “const” keyword was introduced in ES6. It lets you define read only variables using JavaScript. Variables created using “const” are block scoped(or bracket scoped). Redeclaring a “const” variable in the same scope throws an error. Here is an code example: const x […]
This post is a part 1 of ECMAScript 6 Complete Tutorial post series. “let” keyword was introduced in ES6. It lets you define block scope(bracket scope) variables in JavaScript. Initially JavaScript only supported function scope and global scope variables. Here is an example code if(true) { let x = 12; alert(x); […]
JavaScript is a superset of ECMAScript scripting language. ECMAScript forms the language base for JavaScript, JScript and ActionScript. In this tutorial series we will look at ECMAScript 6, a new version of ECMAScript providing a new set features and fixes to JavaScript. ECMAScript6 is also called as “ES6″, “Harmony” and “ES.next”. Categorizing ES6 Features All […]
Intel XDK provides the best development solution for creating cross platform mobile apps using HTML, CSS and JavaScript. Its the best way for web developers to create mobile apps. Here is a series of tutorial to learn Intel XDK from scratch.
This post is a part 4 of Web Cryptography API Tutorial post series. ⎘ Next post in the series is Passphrase Based Encryption using Web Cryptography API. ⎗ Previous post in the series is Asymmetric Encryption using Web Cryptography API. Suppose person A sends a document to person B. Person A doesn’t want Person B […]
Most Commented