Je viens de trouver un bug trĂšs subtil dans le code de ma bibliothĂšque de validation quatuor , et je veux le partager.
TĂąche
Ătant donnĂ© une liste de chaĂźnes: VALID_STRINGS.
Créez une fonction de validation test(x)
qui doit renvoyer true
si x
est l'une des chaĂźnes de ce tableau.
Portée: x
- toute valeur Javascript
Restrictions: ne pas utiliser ES6. (Cible - ancien navigateur)
Solution n ° 1: une décision frontale
La solution la plus simple qui pourrait ĂȘtre est de parcourir toutes les lignes de ce tableau et de comparer.
const VALID_STRINGS = [/* VALID STRINGS */]
function test1(x) {
for (let i = 0; i < VALID_STRINGS.length; i++) {
if (VALID_STRINGS[i] === x) return true
}
return false
}
, , . O( VALID_STRINGS)
, (indexOf, includes, some, reduce ...). , .
â2:
, .
. . .
const VALID_STRINGS = [/* VALID STRINGS */]
const VALID_STRINGS_DICT = {}
for (let i = 0; i < VALID_STRINGS.length; i++) {
const validString = VALID_STRINGS[i]
VALID_STRINGS_DICT[validString ] = true
}
function test2(x) {
return VALID_STRINGS_DICT[x] === true
}
!
! !
, . , â VALID_STRINGS. :
//
const VALID_STRINGS = ['somestring', 'anotherstring']
// ,
const VALID_STRINGS_DICT = { somestring: true, anotherstring: true }
const underwaterRock = ['somestring']
test2(underwaterRock) // true
underwaterRock
â true
. , test2(x)
x
.
VALID_STRINGS_DICT[x]
â x . â . â .
['somestring'].toString() === 'somestring'
â3:
x
const VALID_STRINGS = [/* VALID STRINGS */]
const VALID_STRINGS_DICT = {}
for (let i = 0; i < VALID_STRINGS.length; i++) {
const validString = VALID_STRINGS[i]
VALID_STRINGS_DICT[string] = true
}
function test2(x) {
return typeof x === 'string' && VALID_STRINGS_DICT[x] === true
}
, .
â4: Set
ES6. .
const VALID_STRINGS = [/* VALID STRINGS */]
const validStringsSet = new Set(VALID_STRINGS)
function test4(x) { return validStringsSet.has(x) }
, , .