将 symbol 和 bigInt 转为其对应的包装对象
index.js
const a = Symbol("a");
const symbolWrapperObj = Object(a);
const b = 11n;
const bigIntWrapperObj = Object(b);
index.js
const a = Symbol("a");
const symbolWrapperObj = Object(a);
const b = 11n;
const bigIntWrapperObj = Object(b);