var strs="hello";
var strslength=strs.length();
is this correct?
strs.length
without parentheses.
<script language="javascript">
var strs="hello";
var strslength=strs.length;
alert (strslength)
</script>
thanks to both of you...
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.