'How to use typeof operator to check if function is a string
Task Instructions Your task in this activity is to create a function called isString that takes three arguments (a, b, c). This function does the following: It uses the typeof operator and strict equality comparison to check if the type of all three parameters a, b and c is string. If each argument is a string it returns the message strings. If any of the three parameters is not a string, then it returns the message not strings
I'm unsure how to create the function called isString and then put three arguments under it. I am also unsure how to use typeof operator to complete the comparison. Need more details.
/*
Follow the instructions - Create a function called "isString" that takes 3 arguments (x1, x2, x3)
- check if each argument is a string using typeof.
- If each argument is a string, return "strings"
- If each argument is NOT a string, return "not strings"
*/
//Write your code here
////////////////////////////////////////
////////////////////////////////////////
//open the browser console to check results
console.log('results: ', isString('a', 'b', 'c'));
//don't change this line
if (typeof module !== 'undefined') {
module.exports = isString;
}
Solution 1:[1]
You can get the typeof
of a variable and compare if it is "string". Check this example to see how it is:
const isString=(a,b,c)=>{
if( ((typeof a)=="string") && ((typeof b)=="string") && ((typeof c)=="string")){
return "strings";
}
return "not strings";
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Skatox |