Home
last modified time | relevance | path

Searched refs:mixedNumericArray (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/ets_runtime/test/moduletest/arraysortcase/
Darraysortcase.js30 const mixedNumericArray = ["80", "9", "700", 40, 1, 5, 200]; variable
50 mixedNumericArray.join(); // '80,9,700,40,1,5,200'
51 mixedNumericArray.sort(); // [1, 200, 40, 5, '700', '80', '9']
52 mixedNumericArray.sort(compareNumbers); // [1, 5, '9', 40, '80', 200, '700']
53 print(mixedNumericArray)