A developer receives a comment from the Tech Lead that the code given below has
error:
const monthName = ‘July’;
const year = 2019;
if(year === 2019) {
monthName =‘June’;
}
Which line edit should be made to make this code run?
01 let monthName =’July’;
02 let year =2019;
02 const year = 2020;
03 if (year == 2019) {
Submit