Q:

if string javascript

if (typeof myVar === 'string') { /* code */ };
9
if (typeof myVar === 'string'){
    //I am indeed a string
}
13
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.
0

New to Communities?

Join the community