Answers for "how to check if a data is a string in javascript"

0

javascript check if var is string

if (typeof a_string === 'string') {
    // this is a string
}
Posted by: Guest on October-12-2020
-1

check if value is a string javascript

let eventValue = event.target.value;

    if (/^\d+$/.test(eventValue)) {
      eventValue = parseInt(eventValue, 10);
    }

//If value is a string, it converts to integer. 

//Otherwise it remains integer.
Posted by: Guest on May-19-2020

Code answers related to "how to check if a data is a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language