You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function Student(id,name,orient,clazzName,status,age,education,graduaton,major){
this.id=id;
this.name=name;
this.orient=orient;
this.clazzName=clazzName;
this.status=status;
this.age=age;
this.status=status;
this.education=education;
this.graduaton=graduaton;
this.major=major;
}
let student1 = new Student("001",'a','web','class01','graduated',23,'middleSchool',"kakaa!","software engineering")
let student2 = new Student("002",'b','web','class01','graduated',23,'middleSchool',"kakaa!","software engineering")
let arr = [student1, student2];
// 使用 console.table 输出表格形式
console.table(arr);
Expected behavior
no expected behavior
Actual behavior
When using node.js to call console.table, the content printed on the line is too long, the error occurs
The text was updated successfully, but these errors were encountered:
@NadeshikoToRin, you were using a pretty old version of PSReadLine (2.0.0-beta2 or prior), and it's likely that the issue was fixed in a newer version.
Please upgrade to the 2.3.5 version of PSReadLine from PowerShell Gallery.
See the upgrading section for instructions. Please let us know if you run into the same issue with the latest version.
Prerequisites
Exception report
Screenshot
Environment data
Steps to reproduce
function Student(id,name,orient,clazzName,status,age,education,graduaton,major){
this.id=id;
this.name=name;
this.orient=orient;
this.clazzName=clazzName;
this.status=status;
this.age=age;
this.status=status;
this.education=education;
this.graduaton=graduaton;
this.major=major;
}
let student1 = new Student("001",'a','web','class01','graduated',23,'middleSchool',"kakaa!","software engineering")
let student2 = new Student("002",'b','web','class01','graduated',23,'middleSchool',"kakaa!","software engineering")
let arr = [student1, student2];
// 使用 console.table 输出表格形式
console.table(arr);
Expected behavior
no expected behavior
Actual behavior
When using node.js to call console.table, the content printed on the line is too long, the error occurs
The text was updated successfully, but these errors were encountered: