BLOG main image
분류 전체보기 (313)
교육 (13)
NEIS (6)
Edufine (0)
Programmer (5)
Android Programming (1)
Internet W3 (18)
JAVA Programming (9)
JSP/Servlet (1)
Framework (7)
Spring For Beginner (4)
eGovFrame (10)
MEAN Stack (2)
NodeJS (5)
SublimeText (30)
SublimeText_Tips (18)
Eclipse (16)
JavaScript (8)
jQuery (12)
jQuery_tips (1)
Ajax (3)
DWR(Direct Web Remote) (4)
JSON(JS Object Notation) (4)
Oracle (2)
MySQL (28)
OS (16)
Download (3)
Life (10)
Favorit Site (1)
Books (2)
Healthy (1)
Stocks (1)
HTML5/CSS (1)
Python (4)
Security (7)
CISSP (0)
Ruby On Rails (5)
일기장 (0)
영어 교과서(중2) (3)
알고리즘 (0)
Go Lang (3)
VB 2010 (12)
C# (1)
정보보안기사(네트워크보안) (0)
업무 활용 엑셀 (11)
틈틈이 활용팁 (14)
하루 하루 살아가며 ……. (2)
기술 (1)
파이썬 & 데이터분석 (1)
Visitors up to today!
Today hit, Yesterday hit
daisy rss
tistory 티스토리 가입하기!
2015. 7. 13. 17:11

JavaScript Syntax

 

JavaScript syntax is the set of rules, how JavaScript programs are constructed.


JavaScript Programs

A computer program is a list of "instructions" to be "executed" by the computer.

In a programming language, these program instructions are called statements.

JavaScript is a programming language.

JavaScript statements are separated by semicolons.

 

<p id="demo"></p>

<script>
  var x = 5;
  var y = 6;
  var z = x + y;
  document.getElementById("demo").innerHTML = z;
</script> 


In HTML, JavaScript programs can be executed by the web browser.

JavaScript Statements

JavaScript statements are composed of:

Values, Operators, Expressions, Keywords, and Comments.


JavaScript Values

The JavaScript syntax defines two types of values: Fixed values and variable values.

Fixed values are called literals. Variable values are calledvariables.


JavaScript Literals

The most important rules for writing fixed values are:

Numbers are written with or without decimals: 0.01, 1000

Strings are text, written within double or single quotes: "John Doe", 'John Doe'

Expressions can also represent fixed values: 5 + 6, 5 * 10

 

JavaScript Variables

In a programming language, variables are used to store data values.

JavaScript uses the var keyword to define variables.

An equal sign is used to assign values to variables.

In this example, x is defined as a variable. Then, x is assigned (given) the value 6:

var x;
x = 6;

JavaScript Operators

JavaScript uses an assignment operator ( = ) to assign values to variables:

var x = 5;
var y = 6;

 

JavaScript uses arithmetic operators ( + - * / ) to compute values: (5 + 6) * 10

JavaScript Keywords

JavaScript keywords are used to identify actions to be performed.

Thevar keyword tells the browser to create a new variable:

<p id="demo"></p>

<script>
   var x = 5 + 6;
   var y = x * 10;
   document.getElementById("demo").innerHTML = y;
</script> 

 

 

JavaScript Comments

Not all JavaScript statements are "executed".

Code after double slashes// or between /* and */ is treated as a comment.

Comments are ignored, and will not be executed:

 

<p id="demo"></p>

<script>
  var x = 5;
  // var x = 6; I will not be executed
  document.getElementById("demo").innerHTML = x;
</script> 

 

JavaScript is Case Sensitive

All JavaScript identifiers are case sensitive.

The variables lastName and lastname, are two different variables.

lastName = "Doe";
lastname = "Peterson";

 

JavaScript does not interpret VAR or Var as the keyword var.


JavaScript and Camel Case

Historically, programmers have used three ways of joining multiple words into one variable name:

Hyphens:

first-name, last-name, master-card, inter-city.

Underscore:

first_name, last_name, master_card, inter_city.

Camel Case:

FirstName, LastName, MasterCard, InterCity.

 

 

 

In programming languages, especially in JavaScript, camel case often starts with a lowercase letter:

firstName, lastName, masterCard, interCity.

 

Hyphens are not allowed in JavaScript. It is reserved for subtractions.

JavaScript Character Set

JavaScript uses the Unicode character set.

Unicode covers (almost) all the characters, punctuations, and symbols in the world.

For a closer look, please study our Complete Unicode Reference

 

반응형

'JavaScript' 카테고리의 다른 글

[06] JavaScript Comments  (0) 2015.07.13
[05] JavaScript Statements  (0) 2015.07.13
[03] JavaScript Output  (0) 2015.07.13
[02] JavaScript Where To  (0) 2015.07.13
[01] JavaScript Intro  (0) 2015.07.13