js从键盘中任意输入学生的信息,包括姓名,性别,出生日期,籍贯。查找籍贯是保定的学生
时间: 2023-06-10 13:05:26 浏览: 175
可以使用以下代码实现输入学生信息并查找籍贯为保定的学生:
```javascript
// 定义学生类
class Student {
constructor(name, gender, birthday, hometown) {
this.name = name;
this.gender = gender;
this.birthday = birthday;
this.hometown = hometown;
}
}
// 创建学生数组
const students = [];
// 添加学生信息
while (true) {
const name = prompt("请输入学生姓名");
if (!name) {
break;
}
const gender = prompt("请输入学生性别");
const birthday = prompt("请输入学生出生日期");
const hometown = prompt("请输入学生籍贯");
const student = new Student(name, gender, birthday, hometown);
students.push(student);
}
// 查找籍贯为保定的学生
const results = students.filter((student) => {
return student.hometown === "保定";
});
// 显示查找结果
console.log("籍贯为保定的学生:");
for (const result of results) {
console.log(result.name);
}
```
注意,以上代码仅作为示例,可能还需要进行错误处理等操作。
阅读全文