Encontré un error muy sutil en el código de la biblioteca de validación de cuarteto y quiero compartirlo.
Tarea
Dada una lista de cadenas: VALID_STRINGS.
Cree una función de validación test(x)
que debería devolver true
si x
es una de las cadenas de esta matriz.
Alcance: x
- cualquier valor de Javascript
Restricciones: No utilice ES6. (Target - navegador antiguo)
Solución n. ° 1: una decisión directa
La solución más simple que podría ser es examinar todas las líneas de esta matriz y comparar.
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) }
, , .