摘要:
1. 创建多进程的模块 1.1 child_process1.2 cluster 2. 创建多进程的方法 2.1 child_process有4种方法: 1. spawn: 创建子进程,执行非node程序,执行结果以流形式返回2. execFile: 创建子进程,执行非node程序,执行结果以回调返 阅读全文
摘要:
1. 可选链 可选链,?.操作符,在访问属性或方法时,若存在为空的中间量,则返回undefined,在长链条的属性访问时,可节省代码 const stu = { name: 'xiaoming', school: { name: "xxx" } } const cityName = stu.addr 阅读全文