4 Şubat 2019 Pazartesi

typeof Anahtar Kelimesi

Örnek
Şöyle yaparız.
// code
[-1, 0, 1, 2, 3, 4, Number(0), '', 'test'].filter(n => typeof n === 'number')
// output
[-1, 0, 1, 2, 3, 4, 0]
Örnek
Şöyle yaparız.
var john = ['john', 'smith', 1990, 'designer', false, 'blue' ];

var i = 0;
while ( i < john.length) {
  if( typeof john[i] !== 'string') {...};
  i++;
}

Hiç yorum yok:

Yorum Gönder