Trong phòng thí nghiệm này, bạn sẽ tìm hiểu làm thế nào để có hiệu quả thao tác chuỗi. Bạn cũng sẽ tìm hiểu làm thế nào để tạo ra các chức năng đơn giản hóa mã của bạn. Để hoàn thành phòng thí nghiệm, bạn sẽ cần phải làm việc thông qua hai bài tập: Xây dựng các trang động Tạo một hàm cho tính toán Mỗi tập thể dục bao gồm một phần "Mục tiêu" mô tả mục đích của tập thể dục. Bạn được khuyến khích để cố gắng hoàn thành bài tập từ thông tin được đưa ra trong phần Mục. | Variable Scope Answers 1. Which operators allow you to concatenate strings The addition and the add-by-value operators 2. What would you use the indexOf method for To determine whether a substring exists within a larger string and the starting index of that string if it does exist. 3. How do you use the substring method To extract a copy of a substring from a larger string by passing it the index of the first character of the substring and the index of the character after the last character of the substring. 4. What is the purpose of a function A function executes a predefined set of statements and optionally returns a value. 5. True False A function call does not have to pass the same number of parameters as the function definition. False. A function call s parameter values must match the function s definition. 6. How many return values can a function have Just one 7. True False A local variable defined in function showMsg can be used in function alertUser . False. Local variables can be used only within the function in which they are defined. Feb 19 2008 3 29PM Dao Dung dungdq@ For productvevaluation only- nOt for distribution or commercial use. Copyright 2003 by Application Developers Training Company All rights reserved. Reproduction is strictly prohibited. 3-13 Lab 3 Strings and Functions Lab 3 Strings and Functions TIP Because this lab includes a great deal of typed code we ve tried to make it simpler for you. You will find all the code in in the same directory as the sample project. To avoid typing the code you can cut paste it from the source file instead. Feb 19 2008 3 29PM Dao Dung dungdq@ For productevaluation only- nOt for distribution or commercial use. JavaScript Copyright 2003 by Application Developers Training Company All rights reserved. Reproduction is strictly prohibited. Lab 3 Overview Lab 3 Overview In this lab you will learn how to effectively manipulate strings. You ll also learn how to create .