Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
firstArr = Array("John", "Jacob", "Sam", "Bill")
secondArr = Array("Jen", "Bill", "Mike", "Steve", "John")
dim matchArr()
for i=0 to ubound(firstArr)
for j=0 to ubound(secondArr)
if strComp(firstArr(i), secondArr(j), 1)=0 then
on error resume next
redim preserve matchArr(ubound(matchArr)+1)
if err.number<>0 then redim matchArr(0) : err.clear
on error goto 0
matchArr(ubound(matchArr))=firstArr(i)
end if
next
next
on error resume next
wscript.echo "The number of matches is " & ubound(matchArr)+1
if err.number<>0 then wscript.echo "No match is reported." : err.clear
on error goto 0
'etc etc other stuff