Complete the code to define the root storage bucket reference.
const bucket = firebase.storage().[1]();The ref() method returns the root reference to the storage bucket.
Complete the code to create a reference to a folder named 'images' inside the bucket.
const imagesRef = bucket.[1]('images/');
The child() method creates a reference to a folder or file inside the bucket.
Fix the error in the code to get a reference to a file named 'photo.jpg' inside 'images' folder.
const photoRef = bucket.child('images').[1]('photo.jpg');
To get a nested file reference, use child() again on the folder reference.
Fill both blanks to create a reference to 'docs/manual.pdf' inside the bucket.
const manualRef = bucket.[1]('docs/').[2]('manual.pdf');
Use child() twice to navigate folders and files inside the bucket.
Fill all three blanks to create a reference to 'backups/2024/january.zip' inside the bucket.
const backupRef = bucket.[1]('backups/').[2]('2024/').[3]('january.zip');
Use child() repeatedly to navigate nested folders and files inside the bucket.