javascript-methods Flashcards

1
Q

Why do we log things to the console?

A

To make sure things are working as intended and to troubleshoot

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

What is a method?

A

A method is a function which is a property of an object.

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

How is a method different from any other function?

A

A method is a function that is associated with an object, whereas a function is a standalone piece of code that is not associated with any particular object

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

How do you remove the last element from an array?

A

pop() method

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

How do you round a number down to the nearest integer?

A

Math.floor() method

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

How do you generate a random number?

A

Math.random()

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

How do you delete an element from an array?

A

splice() takes 2 arguments - the index to be deleted , and the number of items to delete. shift() and pop()

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

How do you append an element to an array?

A

push() , the argument will be added to the end of the array

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

How do you break a string up into an array?

A

split() takes a string as the argument and splits it into and array of substrings

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

Do string methods change the original string? How would you check if you weren’t sure?

A

Most string methods in JavaScript do not modify the original string. Instead, they return a new string that contains the result of the operation.

To check whether a string method modifies the original string or not, you can look at the documentation for the method.

You can also test the method by using it on a string and checking the value of the string before and after the method is called

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

Roughly how many string methods are there according to the MDN Web docs?

A

50

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

Is the return value of a function or method useful in every situation?

A

The return value of a function or method is not always useful in every situation. In some cases, the return value may not be needed at all, and the function or method can be called simply for its side effects (e.g., printing to the console, modifying an object, etc.). In other cases, the return value may be useful in some situations but not in others, depending on how the function or method is being used.

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

Roughly how many array methods are there according to the MDN Web docs?

A

40

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

What three-letter acronym should you always include in your Google search about a JavaScript method or CSS property?

A

MDN

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