unittest/scripts/js_dev_api_examples/building_expressions/Expression_Strings.js (1 lines of code) (raw):
// Using a string expression to get all documents that
// have the name field starting with 'S'
var myDocs = myColl.find('name like :name').bind('name', 'S%').execute();