function countWords(str) {
let c=0;
for (x in str){
if(str[x]==" ")
c++;
}
return c+1;
}
function countWords(str) {
let c=0;
for (x in str){
if(str[x]==" ")
c++;
}
return c+1;
}
For further actions, you may consider blocking this person and/or reporting abuse
Ujjawal Kumar -
Programming with Shahan -
Bitrix Theme -
Taqui -
Once suspended, mridul037 will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, mridul037 will be able to comment and publish posts again.
Once unpublished, all posts by mridul037 will become hidden and only accessible to themselves.
If mridul037 is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to mridul037.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag mridul037:
Unflagging mridul037 will restore default visibility to their posts.
Top comments (1)
or you do
which is not only easier to read but also faster