Given that new Documents and querys:
{
"_id" : ObjectId("55803fd1cc0c9aa090e608be"),
"song_name" : "Mickey is good",
"time" : "3.56",
"artist" : "Mickey"
}
{
"_id" : ObjectId("55803fd1cc0c9aa090e608bf"),
"song_name" : "Love is nothing",
"time" : "5.56",
"artist" : "Jimmy"
}
I need to find which songs have a title identical to the artist name. i have tried: db.myCollection.find( { $where: "this.artist == /this.song_name/" } );
but did not work out. please help`
Anything inside the delimiters is considered a "String" and not a variable anymore. Also on the "Right Hand Side this comparison is not valid. So instead do
So
RegExp()
compiles a pattern from the variable whereas//
considers all contained to the a string literal. The.test()
method is how you do the comparison to content with a regular expression for a "Boolean" result.True that
.indeOf()
"should" be faster than a regular expression for basic strings, but if you need the case insensitive comparison then.toLowerCase()
or.toUpperCase()
introduce another cost of their own, so the negilgable difference is lost.Also I think it just looks neater.