TAILIEUCHUNG - Simply JavaScript phần 5

Sau đó, khi chúng tôi nhận được giá trị dữ liệu của chúng tôi từ một nơi xa xôi, chúng tôi chỉ cần để đảm bảo nó được gọi là x và y. Một khi chúng ta đã làm điều đó, chúng tôi đã có các biến. Biến cho phép chúng tôi cung cấp cho một phần dữ liệu tên, sau đó tham chiếu dữ liệu bằng tên của nó cùng trong chương trình của chúng tôi. | Programming with JavaScript 35 var postcodes postcodes Armadale 3143 postcodes North Melbourne 3051 postcodes Camperdown 2050 postcodes Annandale 2038 Now that we ve created our associative array it s not hard to get the postcode for Annandale. All we have to do is specify the right key and the value will appear alert postcodes Annandale The resulting alert is shown in Figure . Figure . Finding a postcode using an associative array Although the keys for an associative array have to be strings the values can be of any data type including other arrays or associative arrays. Conditions and Loops Controlling Program Flow So far we ve seen statements that allow you to set and retrieve variables inside your program. For a program to be really useful however it has to be able to make decisions based on the values of those variables. The way we make those decisions is through the use of special structures called conditions and loops which help to control which parts of your program will run under particular conditions and how many times those parts will be run. Order the print version of this book to get all 400 pages 36 Simply JavaScript Conditions Making Decisions If you think of your program as being like a road map and the browser as a car navigating those roads you ll realize that the browser has to be able to take different paths depending on where the user wants to go. Although a program might seem like a linear path one statement following another conditional statements act like intersections allowing you to change directions on the basis of a given condition. if Statements The most common conditional statement is an if statement. An if statement checks a condition and if that condition is met allows the program to execute some code. If the condition isn t met the code is skipped. The flow of a program through an if statement can be visualized as in Figure . Figure . The logical flow of an if statement Simply JavaScript Programming .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.