Presentation is loading. Please wait.

Presentation is loading. Please wait.

Chapter 3: Data Types and Operators JavaScript - Introductory.

Similar presentations


Presentation on theme: "Chapter 3: Data Types and Operators JavaScript - Introductory."— Presentation transcript:

1 Chapter 3: Data Types and Operators JavaScript - Introductory

2 Tutorial3Calculator.html

3 Section A: Using Data Types and Arrays

4 Objectives In this section, students will learn: How to use data types About numeric data types About Boolean values How to use strings How to use arrays

5 Data Types Data type is the specific category of information that a variable contains Data types that can be assigned only a single value are called primitive types JavaScript supports five primitive data types: –Integer numbers –Floating-point numbers –Boolean values –Strings –Null value

6 Primitive Types

7 Data Types Programming languages that require you to declare the data types of variables are called strongly-typed programming languages Strong typing is also known as static typing Programming languages that do not require you to declare the data types of variables are called loosely-typed programming languages Loose typing is also known as dynamic typing since data types change after being declared

8 Values Returned by Typeof () Operator

9 PrintDataTypes.html

10 Numeric Data Types An integer is a positive or negative number with no decimal places Integer values in JavaScript can range from -9007199254740992(-2 53 ) to 9007199254740992 (2 53 ) A floating-point number contains decimal places or is written using exponential notation

11 Numeric Data Types Exponential notation, or scientific notation, is a way of writing very large numbers or numbers with many decimal places using shortened format Floating-point values that exceed the largest positive value of +1.7976931348623157 x 10 308 result in a special value of Infinity

12 Boolean Values A Boolean value is a logical value of true or false You can also think of a Boolean value as being yes or no, or on or off. Boolean values are most often used for decision making and comparing data Only the words true and false can be used to indicate Boolean values Boolean values get their name from the 19th century mathematician George Boole

13 Program That Returns a Boolean Value to an Event Handler

14 LiteralStrings Program

15 Strings A text string contains zero or more characters surrounded by double or single quotation marks There is no special data type in JavaScript for a single character, such as the char data type in the C, C++, and Java programming languages Take extra care when using single quotations with possessives and contractions in strings JavaScript interpreter always looks for the first closing single or double quotation mark to match an opening single or double quotation mark

16 Output of LiteralStrings Program in a Web Browser

17 Strings An escape character tells the compiler or interpreter that the character that follows it has a special purpose When you combine the escape character with other characters, the combination is called an escape sequence In addition to including escape sequences in strings, you can include HTML tags If you include HTML tags within JavaScript strings, they must be located within a string’s opening and closing quotation marks

18 JavaScript Escape Sequences

19 Program Containing Strings with Escape Sequences

20 Output of Program Containing Strings with Escape Sequences

21 Program Containing Strings with HTML Tags

22

23 Output of Program Containing Strings with HTML Tags

24 Output of DailySpecials.html

25 Arrays An array contains a set of data represented by a single variable name Since arrays are objects, you create them using new keyword and JavaScript’s Array() constructor object The Array () object is comparable to a constructor function and is created using similar syntax, as follows: variable_name = new Array (number of elements);

26 Arrays Each piece of data contained in an array is called an element The numbering of elements within an array starts with an index number of zero (0). Array elements that are created but not assigned values have an initial value of null

27 Output of MonthsofYear.html

28 Section A: Chapter Summary A data type is the specific category of information that a variable contains Data types that can only be assigned a single value are called primitive types Assigning the value null to a variable indicates the variable does not contain a value An integer is a positive or negative number with no decimal point A floating-point number contains decimal places or is written using exponential notation

29 Section A: Chapter Summary A Boolean value is a logical value of true or false Literal strings and string variables contain zero or more characters An escape character is used to tell the compiler or interpreter that the character following it has a special purpose An array contains a set of data represented by a single variable name An array is created with the Array () constructor object

30 Section A: Chapter Summary The Array () constructor object receives a single argument representing the number of elements to be contained in the array The numbering of elements within an array starts with an index number of zero (0) You can create an array without any elements and then add new elements to the array as needed The size of an array can change dynamically Someone can assign values to an array’s elements when first created

31 Section B: Expressions and Operators

32 Objectives In this section, you will learn how to: Use expressions Use arithmetic, assignment, comparison, logical, and string operators Create the calculator program

33 Expressions Variables and data become most useful when you use them in an expression An expression is a combination of literal values, variables, operators, and other expressions that can be evaluated by the JavaScript interpreter to produce a result Operands are variables and literals contained in an expression Operators are symbols used in expressions to manipulate operands

34 Literal and Variable Expressions

35 JavaScript Operator Types

36 Expressions JavaScript operators are binary or unary A binary operator requires an operand before the operator and an operand after the operator –The equal sign in the statement myNumber = 100; is an example of a binary operator A unary operator requires a single operand either before or after the operator Operand to the left of an operator is known as the left operand and on the right is the right operand

37 Arithmetic Operators Arithmetic operators are used to perform mathematical calculations

38 Examples of Arithmetic Binary Operators

39

40 Arithmetic Operators When JavaScript performs an arithmetic calculation, it performs the right side of the assignment operator, then assigns the value to a variable on the left side The JavaScript interpreter will not convert strings to numbers when you use the addition operator Arithmetic operations can also be performed on a single variable using unary operators A prefix operator is placed before a variable A postfix operator is placed after a variable

41 Arithmetic Operators The statements ++myVariable; and myVariable++; both increase myVariable by one

42 Output of ArithmeticExamples.html

43 Assignment Operators Assignment operators are used for assigning a value to a variable var myCar = “Ford”; MyCar = “Corvette”; Can use the + = assignment operator to combine two strings as well as to add numbers

44 Assignment Operators

45 Examples of Assignment Operators

46 Output of AssignmentsExamples.html

47 Comparison Operators Comparison operators are used to compare two operands for equality and to determine if one numeric value is greater than another A Boolean value of true or false is returned after two operands are compared The comparison operator compares values, while the assignment operator assigns values

48 Comparison Operators

49 Examples of Comparison Operators

50 Output of ComparisonExamples.html

51 Logical Operators Logical operators are used for comparing two Boolean operands for equality A Boolean value of true or false is returned after two operands are compared Logical operators are often used within conditional and looping statements such as the if else, for, and while statements

52 Logical Operators

53 Output of LogicalExamples.html

54 String Operators The concatenation operator (+) is used to combine two strings The following code combines a string variable and a literal string, and assigns the new value to another variable: var firstString = “Ernest Hemingway wrote”; var newString; newString = firstString + “ For Whom the Bell Tolls ; You can also use the += assignment operator to combine two strings

55 Operator Precedence Operator precedence is the order of priority in which operations in an expression are evaluated Expressions are evaluated on a left-to-right basis

56 Order of precedence for JavaScript operators: –Parentheses/brackets/dot (() []. ) - highest precedence –Negation/ increment (! - ++ -- typeof void) –Multiplication/division/modulus (* / % ) –Addition/ subtraction (+ -) –Comparison ( >=) –Equality (==!=) –Logical and (&&)- Logical or (II) –Assignment operators (=+=-=*=/=%=) - lowest This list does not include ALL the operators that JavaScript evaluates in the order of precedence Operator Precedence

57 Creating the Calculator Program The eval() function evaluates expressions contained within strings Can include a string literal or string variable as the argument for the eval() function

58 Section B: Chapter Summary An expression is a single literal or variable, or a combination of literal values, variables, operators, and other expressions that can be evaluated by interpreter to produce result Operands are variables and literals contained in an expression Operators are symbols used in expressions to manipulate operands A binary operator requires an operand before operator and an operand after operator

59 Section B: Chapter Summary A unary operator requires a single operand either before or after operator Arithmetic operators are used for performing addition, subtraction, multiplication, and division in JavaScript The increment (++) and decrement (--) unary operators can be used as prefix or postfix operators Use assignment operators to assign a value to a variable

60 Section B: Chapter Summary Use comparison operators to compare two operands for equality and determine if one numeric value is greater than another Use logical operators to compare two Boolean operands for equality Logical operators are often used with comparison operators to evaluate expressions, allowing you to combine results of several expressions into a single statement

61 Section B: Chapter Summary When used with strings, the +sign, or addition operator, is known as the concatenation operator Operator precedence is the order of priority in which operations in an expression are evaluated Parentheses are used with expressions to change the order in which individual operations in an expression are evaluated Use the eval() function to evaluate expressions contained within strings


Download ppt "Chapter 3: Data Types and Operators JavaScript - Introductory."

Similar presentations


Ads by Google