We just have to remember,
no matter how mature,
we have became.
we are still babies of this world.
Subscribe to:
Posts (Atom)
remove a property from a JavaScript object?
remove a property from a JavaScript object? delete myObject.regex; // or, delete myObject['regex']; // or, var prop = ...
-
php functions with example A user defined function declaration starts with the word "function": Syntax function functionName() ...
-
What does “use strict” do in JavaScript? Strict Mode is a new feature in ECMAScript 5 that allows you to place a program, or a functi...
-
php loops with example In PHP, we have the following looping statements: while - loops through a block of code as long as the specified co...