前端最新笔试题专栏:前端面试题
个人主页:繁星学编程
个人简介:一个不断提高自我的平凡人
分享方向:目前主攻前端,其他知识也会阶段性分享
格言:☀️没有走不通的路,只有不敢走的人!☀️
让我们一起进步,一起成为更好的自己!!!
请用两种以上方式优化下面方法代码。
Function getClothes(temperature){
let clothes = "";
if (temperature === 5) {
clothes = "羽绒服";
} else if (temperature === 10) {
clothes = "鸭绒服";
}else if (temperature === 15) {
clothes = "毛呢外套";
}else if (temperature === 20) {
clothes = "西服";
}else if (temperature === 25) {
clothes = "长袖";
}else if (temperature === 30) {
clothes = "短袖";
}
return clothes;
}
方式一:使用对象键值对形式
function getClothes(temperature) {
const clothesMap = {
5: "羽绒服",
10: "鸭绒服",
15: "毛呢外套",
20: "西服",
25: "长袖",
30: "短袖"
};
return clothesMap[temperature] || "";
}
方式二:使用数组对象,然后通过find()方法查找的方式
function getClothes(temperature) {
const clothesArray = [
{ temperature: 5, clothes: "羽绒服" },
{ temperature: 10, clothes: "鸭绒服" },
{ temperature: 15, clothes: "毛呢外套" },
{ temperature: 20, clothes: "西服" },
{ temperature: 25, clothes: "长袖" },
{ temperature: 30, clothes: "短袖" }
];
const matchedClothes = clothesArray.find((item) => item.temperature === temperature);
return matchedClothes ? matchedClothes.clothes : "";
}
正则表达式
const number = 1234567;
const formattedNumber = number.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
console.log(formattedNumber);
直接使用tolocaleString()方法
const number = 1234567;
const formattedNumber = number.toLocaleString();
console.log(formattedNumber);
注:给定数据只有一个频率最高的IP
样例:
输入 = ["192.168.1.1","192.118.2.1","192.168.1.1"]
输出 "192.168.1.1"
function findMostFrequent(lines) {
let counts = {};
// 统计每个IP出现次数
for (let ip of lines) {
if (!counts[ip]) {
counts[ip] = 0;
}
counts[ip]++;
}
// 找到出现次数最多的
let mostFrequent = "";
let maxCount = 0;
for (let ip in counts) {
if (counts[ip] > maxCount) {
mostFrequent = ip;
maxCount = counts[ip];
}
}
return mostFrequent;
}
注:保证列表里的所有数字都在int范围内
样例:
输入:[1,2,3,4,5]
输出:5
function findMax(arr) {
return Math.max(...arr);
}
注:你可以假设输入一定是一个只有三位数的整数,这个整数大于等于100,小于1000.
样例:
输入:number = 123
输出:321
function reverseNumber(num) {
if (num >= 100 && num < 1000) {
// 将数字转换为字符串,然后将其拆分为字符数组,再反转数组,最后使用join方法将字符数组合并为一个字符串
return parseInt(String(num).split('').reverse().join(''));
} else {
// 输入不是一个三位数的整数,返回原始输入
return num;
}
}
样例:
输入:c = ‘1’
输出:true
解释:'1’属于数字
function isAlphaNumeric(number) {
return /^[a-zA-Z0-9]$/.test(number);
}
结束语:
希望对您有一点点帮助,如有错误欢迎小伙伴指正。
点赞:您的赞赏是我前进的动力!
⭐收藏:您的支持我是创作的源泉!
✍评论:您的建议是我改进的良药!
一起加油!!!