Trimble Interview Question

How will you filter the strings starts with particular word?

Interview Answer

Anonymous

Oct 14, 2018

//lets consider Jon is the startWord if(word.startsWith("Jon"))

1