JavaScript Object Literals


An object literal is a comma-separated list of name-value pairs wrapped in curly braces. Object Literals can contain others Object Literals, Arrays and Functions.

Connecting to a MySQL Database with the PHP library PDO


PDO stands for PHP Data Objets and support Prepared Statements

you can also use the bindParam method, like:

What is ECMAScript 6 or ES6?


ECMAScript 6 (ES6) is the specification or standard followed by many programming languages like JavaScript, JScript, ActionScript, etc. The most popular programmimg language following this specification is JavaScript, That is why many people call ECMAScript 6 JavaScript 6 New features introduced in ECMAScript 6: The let statement allows you to declare a variable with block […]