Attention, Ă©cueil

image



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 truesi xest 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) }




, , .



FAQ:



  1. Typescript: , , API. typescript .

    Typescript. , unknown any. , javascript.
  2. " , , , !"

    — )
  3. includes ? , , .
  4. ES6? , , . №3 , . №4 , . .



All Articles