Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amrishodiq/f00ad3be6c7b77944640a7621b723fe7 to your computer and use it in GitHub Desktop.
Save amrishodiq/f00ad3be6c7b77944640a7621b723fe7 to your computer and use it in GitHub Desktop.
JavaScript: Find Like
jkt.findLike(
"address",
"cilandak",
datasourcePusatBelanja,
function(results) {
if (results == null) {
console.log("Empty");
return;
}
var len = results.rows.length;
for (var i=0; i<len; i++) {
console.log(results.rows.item(i));
}
},
function(error) {
console.log(error.message);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment