Author name: vasu

Python Numbers

A numeric value is a value in the form of a number. Basically there are three types of numbers in python – int float complex   A variable of numeric type is created as soon as you assign a numeric value to it. For eg x = 1 int ‘int’ stands […]

Python Numbers Read More »

PHP Comments

A comment in php is a line or a couple of lines which is not executed by the php interpreter. PHP supports both single line comments and multi line comments. Comments are pretty useful when writing code in PHP. Comments in PHP can be used to – Let other people

PHP Comments Read More »

JavaScript Comments

Javascript comments can be used to make the code more readable and more explained. Javascript offers single line comment as well as multi line comments. Comments in Javascript are ignored by the JavaScript Engine and are not executed at all. Single line comment – If we write any line starting

JavaScript Comments Read More »

JavaScript Syntax

Syntax of Javascript means the set of rules that needs to be followed while writing javascript code. As you learn JavaScript you would be  using terms like script, variables,functions, comments etc. In this section, i will give you a brief intro about these. Javascript code can be implimented anywhere inside

JavaScript Syntax Read More »