Searched refs:arr3 (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/docs/zh-cn/contribute/ |
H A D | OpenHarmony-JavaScript-coding-style-guide.md | 695 const arr3 = new Array(x1); 699 除了第三种情况之外,其他都可以正常工作,如果`x1`是个整数,那么`arr3`就是长度为`x1`,值都为`undefined`的数组。如果`x1`是其他任何数字,那么将抛出异常,如果它是其他任何东西… 706 const arr3 = [x1];
|
/ohos5.0/docs/zh-cn/application-dev/arkts-utils/ |
H A D | sendable-constraints.md | 334 let arr3: number[] = [1, 2, 3]; // 不是Sendable类型,正例,不报错
|
/ohos5.0/docs/en/contribute/ |
H A D | OpenHarmony-JavaScript-coding-style-guide.md | 696 const arr3 = new Array(x1); 700 Except for the third case, all other functions can work properly. If `x1` is an integer, `arr3` is … 707 const arr3 = [x1];
|
/ohos5.0/docs/en/application-dev/arkts-utils/ |
H A D | sendable-constraints.md | 324 let arr3: number[] = [1, 2, 3]; // The type is not Sendable. No error is reported.
|
/ohos5.0/docs/zh-cn/application-dev/quick-start/ |
H A D | typescript-to-arkts-migration-guide.md | 2169 let arr3 = new DerivedFromArray([7, 8, 9]); 2170 let arr4 = [...arr1, 10, ...arr2, 11, ...arr3];
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/util/test/ |
H A D | test_util.cpp | 3275 char arr3[] = {0xE4, 0xBD, 0xA0, 0xE5, 0xA5, 0xBD}; variable 3277 stdDecodeInfo3->sinputDecode = arr3;
|
/ohos5.0/docs/en/application-dev/quick-start/ |
H A D | typescript-to-arkts-migration-guide.md | 2296 let arr3 = new DerivedFromArray([7, 8, 9]); 2297 let arr4 = [...arr1, 10, ...arr2, 11, ...arr3];
|