What will be the value of arr.length after executing the following code snippet?
let arr = ['apple', 'banana', 'orange'];
arr.push('grape');
What will be the value of arr.length after executing the following code snippet?
let arr = ['apple', 'banana', 'orange'];
arr.push('grape');