+3 votes
in Class 12 by kratos

A code to display the no. of characters of a string is written below. Fill in the blank to complete it:

var sometext = “Bye!”

document.write(_____(sometext))

1 Answer

+1 vote
by kratos
 
Best answer

var sometext = “Bye!”

document.write(strlen()(sometext))

...