Native JavaScript Paramater Functions

We can write/implement efficient browser render function calls with passing the parameters/arguments like. //Small native JavaScript snippets function printMulNum(n1, n2) { return n1>n2 ? n1 : n2 ;}   function argTotalSum() { var sum = 0; for(var i = 0; i < arguments.length; i++) { sum += arguments[i]; } return sum; } //passing the argumnets/paramaters to theContinue reading "Native JavaScript Paramater Functions"

Web Accessibility

World Health Organization (WHO) states that 15 per cent of world population are with disabilities. To fulfill disable people web based needs W3 Consortium introduced and recommends that any Web based Activity that must be Web Accessibility Compliance. What is Web Accessibility? Web accessibility means that people with disabilities can perceive, understand, navigate, and interactContinue reading "Web Accessibility"