CamWass
Results
1
comments of
CamWass
First, you cannot define a const more than once: ``` const location = []; // location is [] location = doc.data().location // TypeError: invalid assignment to const 'location' ``` To...