“LastIndexof” Réponses codées

LastIndexof () JavaScript

'canal'.lastIndexOf('a');     // retorna 3
'canal'.lastIndexOf('a', 2);  // retorna 1
'canal'.lastIndexOf('a', 0);  // retorna -1
'canal'.lastIndexOf('x');     // retorna -1
'canal'.lastIndexOf('c', -5); // retorna 0
'canal'.lastIndexOf('c', 0);  // retorna 0
'canal'.lastIndexOf('');      // retorna 5
'canal'.lastIndexOf('', 2);   // retorna 2
Rodrigo Palazon

LastIndexof

var numbers = [2, 5, 9, 2];
numbers.lastIndexOf(2);     // 3
numbers.lastIndexOf(7);     // -1
numbers.lastIndexOf(2, 3);  // 3
numbers.lastIndexOf(2, 2);  // 0
numbers.lastIndexOf(2, -2); // 0
numbers.lastIndexOf(2, -1); // 3
Witty Whale

JavaScript String LastIndexof ()

let str = "Please locate where 'locate' occurs!";
str.lastIndexOf("locate");
naly moslih

JavaScript Array LastIndexof ()

const fruits = ["Apple", "Orange", "Apple", "Mango"];
let position = fruits.lastIndexOf("Apple") + 1;
naly moslih

Réponses similaires à “LastIndexof”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code