Answers for "function to check if variable contains 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
0

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 intege
Posted by: Guest on May-19-2020

Code answers related to "function to check if variable contains string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language