On clicking on solo/team/All I see Uncaught TypeError: report is not a function in Lecture 6 Video Part 1 | JavaScript, Node.js, React.js and Angular.js Forum
M
Monal Posted on 28/08/2021

So I adde Closure as per Lecture 6 Video part 1 , but instead I get error on Firefox Browser Uncaught TypeError: report is not a function

See attached screen shots

function updateClicks() {
let clicks = {};
let button;

function reportClicks(menu) { // Nested Function
button = menu.id;
clicks[button] = clicks[button] + 1 || 1;
const report = [button, clicks];
// console.log(...report); // spread operator ES6
console.log(button, clicks);
}
reportClicks; // returning entire function definition
}

const report = updateClicks();

// update list of sports when user selects a different category (solo/team/all)
document.querySelectorAll('.options div').forEach(function(el) {
el.addEventListener('click', function(event) {
updateActivityList(event);
report(event.target); // Calling the report
}, false);
});


M
Monal Replied on 28/08/2021

screen shot

Responsive image

M
Monal Replied on 28/08/2021

see screen shot

Responsive image

M
Monal Replied on 28/08/2021

ON Chrome Browser Version 92.0.4515.159 (Official Build) (x86_64)

The Activity Forcast does not works but works on Firefox browser

Responsive image

Y
Yogesh Chawla Replied on 28/08/2021

If this forecast feature is working fine on your firefox then it will work properly on chrome also. 

Do Hard Refresh your web browser(to Bypass Your Cache)

Chrome, Firefox, Edge - Windows: Press Ctrl+Function Key+F5 (If that doesn’t work, try Shift+Function Key+F5 or Ctrl+Shift+R).
Chrome, Firefox - Mac: Shift+Command+R.
Safari - Mac: There is no simple keyboard shortcut to force a hard refresh. Instead, press Command+Option+E to empty the cache, then hold down Shift and click Reload in the toolbar.

 

You must have generated your API key from below link then only it should have worked on firefox:

https://home.openweathermap.org/api_keys


M
Monal Replied on 09/09/2021

Ok Thanks Yogesh please close this ticket.

Monal