2438 Views
Function play an important role in programming language as it organise our code in a proper manner. We can use our code over and over by naming it only. The function works very similar to variable, but they are more powerful than that.
Function Syntax
<?php
function functionName() {
// ...
Anamika Gupta
Jul 10, 2018
2902 Views
Array are used to store multiple value in a single variable.It can hold multiple value in one time
For example:Storing the list of brand in single list of item be like this:
var brand1=”lancer”;
var brand2=”puma”;
var brand3=”lee cooper”;
var brand4=”reebok”;
In a ...
Anamika Gupta
Feb 05, 2018