SóProvas


ID
1379737
Banca
FEPESE
Órgão
MPE-SC
Ano
2014
Provas
Disciplina
Programação
Assuntos

Considere o seguinte código HTML e script javascript

< !DOCTYPE html >
< html >
< body >

< button onclick=”Funcao()” > Clicar < / button >

< p id=”MP”>


< script >
function Funcao() {
     var str = “Concurso MP”;
     var n = str.search(/mp/i);
     document.getElementById(“MP”).innerHTML = n;
}
< /script >

< /body >
< /html >

O resultado da função Funcao ao clicar no botão Clicar em um browser (o valor de innerHTML do elemento cujo id é “MP”) é:

Alternativas
Comentários
  • The search() method searches a string for a specified value, and returns the position of the match.

    Perform a case-insensitive search: /i
    http://www.w3schools.com/jsref/jsref_search.asp

    Gabarito: C