就是说,这为什么不起作用?
[a,b]=[1,2];
我希望
a=1;
b=2;
但是它只是说“输出参数太多。”
这是唯一的方法
a=somearray(1);
b=somearray(2);
进行这种分配?
答案 0 :(得分:2)
您需要这样做:
import MurmurHash3 from 'murmurhash3js-revisited';
const str = "My hovercraft is full of eels.";
// get utf-8 bytes
const bytes = new TextEncoder().encode(str);
MurmurHash3.x86.hash32(bytes);
// output: 2953494853
MurmurHash3.x86.hash128(bytes);
// output: "e3a186aee169ba6c6a8bd9343c68fa9c"
MurmurHash3.x64.hash128(bytes);
// output: "03e5e14d358c16d1e5ae86df7ed5cfcb"
MurmurHash3.x86.hash32("any string");
// output: undefined
// (x86.hash128 and x64.hash128 also return undefined)