HomeGeneralHow to Get a Substring from a string in JavaScript ?

How to Get a Substring from a string in JavaScript ?

Below is a sample code snippet demonstrating how to get a substring or extract a string from a string in JavaScript.

How to Get a Substring from a string in JavaScript ?

<string>
  var input = "Ginktage Blog";
  var output = input.substring(0, 7);
</string>

The output of the above substring method call will be Ginktage.

Leave a Reply

You May Also Like

In today’s economy, layoffs have become a common occurrence. Companies may lay off employees for a variety of reasons, including...
Facebook is one of the most popular social media platforms in the world, with millions of users connecting with friends...
Temperature is a critical physical quantity that helps us determine the amount of heat present in a substance or environment....