如何将零连接到数字?

时间:2019-03-15 00:14:48

标签: javascript concat

这是数字:

dna.segs.tree.plot <- plotly::subplot(tree.ggdend,plotly::plotly_empty(),dna.segs.plot %>% plotly::layout(showlegend=T),nrows=1,margin=c(0,0,0,0),widths=c(0.39,0.02,0.59))

我要做到:

555

该怎么做?

这不起作用:

555000

4 个答案:

答案 0 :(得分:3)

这有效:

let x = Number(555 + '000')

尝试一下。

答案 1 :(得分:2)

将其制成字符串,然后编号:

let x = 555;
x +='000'
let y = Number(x)

或者只是做数学

let x=555*1000

答案 2 :(得分:1)

现在是2019:)

console.log(`${555}000`);

尽管我真的鼓励不要混合类型。

答案 3 :(得分:1)

只需创建一个字符串并解析为数字:

%5B223746903996283%2C223525203804543%5D