Have you ever asked someone for the title of a piece of music you hear, which you forget shortly afterwards? Have you ever spotted music that you like, only to forget its title? If this has already happened to you, this site offers you a solution to collect and store the name of all the music you like and want to remember!
Firstly, we need to understand what is a database, because this is what we will use to store the musics we like !
Formally, a database refers to a set of related data and the way it is organized.
To access this data and organize it the way we want, we'll use a tool : Firebase.
To access our database, we just need this line:
var database = firebase.database()
var lovecraftRef = db.ref( "Music" );
MusicRef.set( {
Title: "Ocean eyes",
Singer: "Billie Eilish"
} );
Then, you're ready to put all your data in Firebase to store it ! This technic is very useful for every person who listens to music... And we can assume that there are many of them! Enjoy all your music now!