I was trying to get a book value using JavaScript and storing in a variable named "bookName" now it has a decimal value 124562. This decimal value indicates some book details.
Now the problem is in firebase I made a data modeling a node named as "books" and in there there are different details like:
Book name : tcp/ip
Book number : 124562
Book pages: 300
The problem is how to get the query in firebase that it will compare different books under books node and get me the details of the book number 124562?
Your help in the form of video or event syntax will be helpful.
Also I checked , the Syntax
UserRef.orderByChild('books').equalTo(value).on('child-added',function(snap){
console.log(snap.val());
)};