Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以帮助在从另一个程序映射的信息后添加逗号的 JavaScript 吗?我正在创建一个格式信函,它将从一个程序中起草信息,我想在他们的名字后面加一个逗号。比如Jane Smith在程序中会变成Jane Smith,上表格。
Jane Smith
Jane Smith,
name = name + ","
将在名为 name 的字符串中添加一个逗号。如果您想知道如何从另一个程序中提取该名称,则必须提供更多信息。