14514f5e3Sopenharmony_ci/*
24514f5e3Sopenharmony_ci * Copyright (c) 2023 Huawei Device Co., Ltd.
34514f5e3Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
44514f5e3Sopenharmony_ci * you may not use this file except in compliance with the License.
54514f5e3Sopenharmony_ci * You may obtain a copy of the License at
64514f5e3Sopenharmony_ci *
74514f5e3Sopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
84514f5e3Sopenharmony_ci *
94514f5e3Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software
104514f5e3Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
114514f5e3Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
124514f5e3Sopenharmony_ci * See the License for the specific language governing permissions and
134514f5e3Sopenharmony_ci * limitations under the License.
144514f5e3Sopenharmony_ci */
154514f5e3Sopenharmony_ci
164514f5e3Sopenharmony_ciconst array1 = ['one', 'two', 'three'];
174514f5e3Sopenharmony_ciprint('array1:', array1);
184514f5e3Sopenharmony_ci// Expected output: "array1:" Array ["one", "two", "three"]
194514f5e3Sopenharmony_ci
204514f5e3Sopenharmony_ciconst reversed1 = array1.reverse();
214514f5e3Sopenharmony_ciprint('reversed1:', reversed1);
224514f5e3Sopenharmony_ci// Expected output: "reversed1:" Array ["three", "two", "one"]
234514f5e3Sopenharmony_ci
244514f5e3Sopenharmony_ci// Careful: reverse is destructive -- it changes the original array.
254514f5e3Sopenharmony_ciprint('array1:', array1);
264514f5e3Sopenharmony_ci// Expected output: "array1:" Array ["three", "two", "one"]
274514f5e3Sopenharmony_ci
284514f5e3Sopenharmony_ciprint([1, , 3].reverse()); // [3, empty, 1]
294514f5e3Sopenharmony_ciprint([1, , 3, 4].reverse()); // [4, 3, empty, 1]
304514f5e3Sopenharmony_ci
314514f5e3Sopenharmony_ciconst numbers = [3, 2, 4, 1, 5];
324514f5e3Sopenharmony_ciconst reverted = [...numbers].reverse();
334514f5e3Sopenharmony_cireverted[0] = 5;
344514f5e3Sopenharmony_ciprint(numbers[0]); // 3
354514f5e3Sopenharmony_ci
364514f5e3Sopenharmony_ciconst numbers1 = [3, 2, 4, 1, 5];
374514f5e3Sopenharmony_ciconst reversed = numbers1.reverse();
384514f5e3Sopenharmony_cireversed[0] = 5;
394514f5e3Sopenharmony_ciprint(numbers1[0]); // 5
404514f5e3Sopenharmony_ci
414514f5e3Sopenharmony_civar array2 = new Uint8Array([1, 2, 3, 4]);
424514f5e3Sopenharmony_ciObject.defineProperty(array2, "length", { value: 2 });
434514f5e3Sopenharmony_ciArray.prototype.reverse.call(array2);
444514f5e3Sopenharmony_ciprint(array2)
454514f5e3Sopenharmony_citry {
464514f5e3Sopenharmony_ci    var array3 = new Uint8Array([1, 2, 3, 4]);
474514f5e3Sopenharmony_ci    Object.defineProperty(array3, "length", { value: 5 });
484514f5e3Sopenharmony_ci    Array.prototype.reverse.call(array3);
494514f5e3Sopenharmony_ci    print(array3)
504514f5e3Sopenharmony_ci} catch (error) {
514514f5e3Sopenharmony_ci    print(error.name)
524514f5e3Sopenharmony_ci}
53