Skip to Content
JavaScript for PHP Developers
book

JavaScript for PHP Developers

by Stoyan Stefanov
April 2013
Intermediate to advanced
160 pages
3h 2m
English
O'Reilly Media, Inc.
Content preview from JavaScript for PHP Developers

Chapter 2. JavaScript Syntax

Just like PHP, JavaScript has a C-like syntax, so you’ll find it immediately familiar. This chapter goes over the basics, highlighting what’s similar and what’s different about variables, arrays, loops, conditions, and some miscellaneous (and slightly strange) operators.

Variables

To define a variable in PHP, you’d write:

// PHP
$n = 1;

The equivalent in JavaScript is:

// JavaScript
var n = 1;

There’s no dollar sign, just the name of the variable. Like in PHP, you don’t define variable types because the type is derived from the value. You use var for all types.

If you need a numeric type, you give your variable a numeric value. The same applies to booleans and strings:

var n = 1;       // number
var b = true;    // boolean
var s = "hello"; // string

You have the option of declaring a variable without initializing it with a value. In such cases, the variable is assigned the special value undefined:

var a;
a; // `a` has the special value `undefined`

Note

Redeclaring an existing variable doesn’t set the variable value back to undefined:

var a = 1;
var a;
// `a` is still 1

You can declare (and optionally initialize with a value) several variables with one var statement as long as you separate them with a comma and end with a semicolon:

var pi = 3.14,
    yeps = true,
    nopes,
    hi = "hello",
    wrrrld = "world";

Note

Technically, var is optional. But unless the variable was defined higher up in the scope chain (discussed in more detail in Chapter 3), if you skip var, you end up with a global ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

JavaScript Application Design

JavaScript Application Design

Nicolas Bevacqua

Publisher Resources

ISBN: 9781449336059Errata Page