What will be the output of the following JavaScript code snippet?<p...
```javascript
const arr = [1, 2, 3, 4, 5];
const newArr = arr.splice(2, 1, 6, 7);
console.log(newArr);
console.log(arr);
```
Output:
```
[3]
[1, 2, 6, 7, 4, 5]
```
Explanation:
The `splice()` method is used to change the contents of an array by removing or replacing existing elements and/or adding new elements. In this code snippet, the `splice()` method is called on the `arr` array with the arguments `2` (the starting index), `1` (the number of elements to remove), `6` and `7` (the elements to add).
The `newArr` variable is assigned the value of the removed element(s), which in this case is `3` (the element at index `2`).
The first `console.log()` statement prints the value of `newArr`, which is `[3]`.
The second `console.log()` statement prints the value of `arr`, which has been modified by the `splice()` method. The elements at index `2` and `3` have been replaced with `6` and `7`, respectively. The resulting array is `[1, 2, 6, 7, 4, 5]`.
What will be the output of the following JavaScript code snippet?<p...
The + operator in javascript acts as a concatenation operator when used with string. The new string does not have any space between the two added strings.
To make sure you are not studying endlessly, EduRev has designed Class 3 study material, with Structured Courses, Videos, & Test Series. Plus get personalized analysis, doubt solving and improvement plans to achieve a great score in Class 3.