// ->用于显示表达式的返回值,例如:
1 + 1; // -> 2 'hello world'; // -> "hello world"
// >用于显示console.log的执行结果及报错信息,例如:
console.log(1+1); // > 2 console.log('hello', 'world'); // > hello world