在JavaScript中查找十六进制代码的有效性
如果字符串不包含0-9和af字母以外的其他字符,则可以将其视为有效的十六进制代码。
例如:
'3423ad' is a valid hex code '4234es' is an invalid hex code
我们需要编写一个JavaScript函数,该函数接受一个字符串并检查其是否为有效的十六进制代码。
示例
为此的代码将是-
const str1 = '4234es';
const str2 = '3423ad';
const isHexValid = str => {
const legend = '0123456789abcdef';
for(let i = 0; i < str.length; i++){
if(legend.includes(str[i])){
continue;
};
return false;
};
return true;
};
console.log(isHexValid(str1));
console.log(isHexValid(str2));输出结果
控制台中的输出将为-
false true
热门推荐
3 祝福语简短的微信
10 幼儿祝福语大全简短贺卡
11 感谢教官文案祝福语简短
12 鼠年同事祝福语简短创意
13 元旦祝福语 简短独特群发
14 妈咪跟我生日祝福语简短
15 给儿子新婚祝福语简短
16 伴娘祝福语长文案简短
17 恭喜高考完祝福语简短
18 生日祝福语送老公简短