JavaScript Reference # 1 [ Array ] Flashcards

1
Q

concat()

A

Joins arrays and returns an array with the joined arrays

Joint des tableaux et retourne un tableau avec les tableaux joints

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

constructor

A

Returns the function that created the Array object’s prototype

Renvoie la fonction qui a créé le prototype de l’objet Array

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

copyWithin()

A

Copies array elements within the array, to and from specified positions

Copie les éléments du tableau dans le tableau, vers et depuis les positi

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

entries()

A

Returns a key/value pair Array Iteration Object

Renvoie une paire clé/valeur Array Iteration Object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

every()

A

Checks if every element in an array pass a test

Vérifie si chaque élément d’un tableau passe un test

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

fill()

A

Fill the elements in an array with a static value

Remplir les éléments d’un tableau avec une valeur statique

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

filter()

A

Creates a new array with every element in an array that pass a test

Crée un nouveau tableau avec chaque élément d’un tableau qui passe un test

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

find()

A

Returns the value of the first element in an array that pass a test

Renvoie la valeur du premier élément d’un tableau qui passe un test

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

findIndex()

A

Returns the index of the first element in an array that pass a test

Renvoie l’indice du premier élément d’un tableau qui a réussi un test

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

forEach()

A

Calls a function for each array element

Appelle une fonction pour chaque élément du tableau

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

from()

A

Creates an array from an object

Crée un tableau à partir d’un objet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

includes()

A

Check if an array contains the specified element

Vérifier si un tableau contient l’élément spécifié

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

indexOf()

A

Search the array for an element and returns its position

Recherche dans le tableau un élément et renvoie sa position

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

isArray()

A

Checks whether an object is an array

Vérifie si un objet est un tableau

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

join()

A

Joins all elements of an array into a string

Joint tous les éléments d’un tableau dans une chaîne

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

keys()

A

Returns a Array Iteration Object, containing the keys of the original array

Renvoie un Array Iteration Object, contenant les clés du tableau d’origine

17
Q

lastIndexOf()

A

Search the array for an element, starting at the end, and returns its position

Recherche dans le tableau un élément, en commençant par la fin, et renvoie sa position

18
Q

length

A

Sets or returns the number of elements in an array

Définit ou renvoie le nombre d’éléments dans un tableau

19
Q

map()

A

Creates a new array with the result of calling a function for each array element

Crée un nouveau tableau avec le résultat de l’appel d’une fonction pour chaque élément du tableau

20
Q

pop()

A

Removes the last element of an array, and returns that element

Supprime le dernier élément d’un tableau et renvoie cet élément

21
Q

prototype

A

Allows you to add properties and methods to an Array object

Permet d’ajouter des propriétés et des méthodes à un objet Array

22
Q

push()

A

Adds new elements to the end of an array, and returns the new length

Ajoute de nouveaux éléments à la fin d’un tableau et renvoie la nouvelle longueur

23
Q

reduce()

A

Reduce the values of an array to a single value (going left-to-right)

Réduire les valeurs d’un tableau à une seule valeur (de gauche à droite)

24
Q

reduceRight()

A

Reduce the values of an array to a single value (going right-to-left)

Réduire les valeurs d’un tableau à une seule valeur (de droite à gauche)

25
Q

reverse()

A

Reverses the order of the elements in an array

Inverse l’ordre des éléments d’un tableau

26
Q

shift()

A

Removes the first element of an array, and returns that element

Supprime le premier élément d’un tableau et renvoie cet élément

27
Q

slice()

A

Selects a part of an array, and returns the new array

Sélectionne une partie d’un tableau et renvoie le nouveau tableau

28
Q

some()

A

Checks if any of the elements in an array pass a test

Vérifie si l’un des éléments d’un tableau réussit un test

29
Q

sort()

A

Sorts the elements of an array

Trie les éléments d’un tableau

30
Q

splice()

A

Adds/Removes elements from an array

Ajoute/supprime des éléments d’un tableau

31
Q

toString()

A

Converts an array to a string, and returns the result

Convertit un tableau en chaîne et renvoie le résultat

32
Q

toString()

A

Converts an array to a string, and returns the result

Convertit un tableau en chaîne et renvoie le résultat

33
Q

unshift()

A

Adds new elements to the beginning of an array, and returns the new length

Ajoute de nouveaux éléments au début d’un tableau et renvoie la nouvelle longueur

34
Q

valueOf()

A

Returns the primitive value of an array

Renvoie la valeur primitive d’un tableau