SóProvas


ID
3576091
Banca
VUNESP
Órgão
Prefeitura de Presidente Prudente - SP
Ano
2016
Provas
Disciplina
Programação
Assuntos

A função .each() do jQuery faz com que

Alternativas
Comentários
  • ✅Gabarito(D) 

    Conforme a sintaxe abaixo, percebe-se que para cada elemento/valor, uma função de callback será executada.

    jQuery.each( array, callback )

    ➥ array

    Type: ArrayLikeObject

    The array or array-like object to iterate over.

    ➥ callback

    Type: Function( Integer indexInArray, Object value )

    The function that will be executed on every value.

    jQuery.each( object, callback )

    ➥ object

    Type: Object

    The object to iterate over.

    ➥ callback

    Type: Function( String propertyName, Object valueOfProperty )

    The function that will be executed on every value.

    Fonte: https://api.jquery.com/jquery.each/