mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
33 lines
950 B
JavaScript
33 lines
950 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* My comparefn is inverse implementation comparefn
|
|
*
|
|
* @path ch15/15.4/15.4.4/15.4.4.11/S15.4.4.11_A2.2_T1.js
|
|
* @description Checking ENGLISH ALPHABET
|
|
*/
|
|
|
|
var alphabetR = ["z", "y", "x", "w", "v", "u", "t", "s", "r", "q", "p", "o", "n", "M", "L", "K", "J", "I", "H", "G", "F", "E", "D", "C", "B", "A"];
|
|
var alphabet = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
|
|
|
|
var myComparefn = function(x,y) {
|
|
var xS = String(x);
|
|
var yS = String(y);
|
|
if (xS < yS) return 1
|
|
if (xS > yS) return -1;
|
|
return 0;
|
|
}
|
|
|
|
//CHECK#1
|
|
alphabet.sort(myComparefn);
|
|
var result = true;
|
|
for (var i = 0; i < 26; i++) {
|
|
if (alphabetR[i] !== alphabet[i]) result = false;
|
|
}
|
|
|
|
if (result !== true) {
|
|
$ERROR('#1: CHECK ENGLISH ALPHABET');
|
|
}
|
|
|