Kmspico Download | Official KMS Activator Website [New Version 2024] Uw betrouwbare online apotheek Drogisterij Unique in Nederland Vavada вход позволяет мгновенно попасть в мир азартных игр и бонусов! Получи доступ и начни выигрывать прямо сейчас.

Get First Word of String Using Javascript

Hi guys today i will tell you through this tutorial that how do we get the first word of any sentence from javascript code.

Get first word of string, Get first word of string in Javascript, Get first word of string Using Javascript, Get first word from Sentence using Javascript, Get first word from Sentence in Javascript or Jquery, javascript get first word/part of a sentence

firstword.html

<script type="text/javascript">
var totalWords = "my name is rahul.";
var firstWord = totalWords.replace(/ .*/,'');
alert(firstWord);
console.log(firstWord);
</script>