问题描述
问题:
使用console.log,在三个单独的行上打印出以下字符串的子字符串。
a。 bla bla
b。 墨尔本在墨尔本很棒(注意空间!)
c。 bla bla
请帮我完成任务b。
任务是使用单词/句子制作一个子串
墨尔本是:墨尔本很棒
墨尔本是.substring(0,12));
如何在句子中添加great这个词?
我是新来的编码。
英语不是我的母语。
Question:
Using console.log, on three separate lines, print out the substrings for the following strings.
a. bla bla
b. "Melbourne is" in "Melbourne is great" (note the space!)
c. bla bla
Please help me with task b.
The task is to make a substring with the word/sentence
"Melbourne is" to: "Melbourne is great"
"Melbourne is".substring(0,12) );
How do i add the word "great" to the sentence?
I am new to coding.
English is not my native language.
推荐答案
在三个单独的行上使用console.log, 打印ou以下字符串的子字符串。
a。 bla bla
b。 墨尔本在墨尔本很棒(注意空间!)
c。 bla bla
Using console.log, on three separate lines, print out the substrings for the following strings.
a. bla bla
b. "Melbourne is" in "Melbourne is great" (note the space!)
c. bla bla
当我读到这个问题时,这意味着你需要从字符串墨尔本很棒中提取墨尔本是部分,而不是添加它。
(当然可能是遗漏信息的情况,所以我完全错了。)
如上所述解决方案1,W3Schools是初学者的良好开端。
特别参见 []
这篇关于帮我解决这个java脚本教程问题:的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!