var strs="hello";
var strslength=strs.length();

is this correct?

Recommended Answers

All 3 Replies

strs.length

without parentheses.

Member Avatar for rajarajan2017
<script language="javascript">
var strs="hello";
var strslength=strs.length;
alert (strslength)
</script>

thanks to both of you...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.