2014-04-25 69 views
-1
var myCountry="india"; 

console.log(myCountry); 

myCountry.substring(0,3) 

console.log(myCountry); 

這裏我聲明瞭一個變量myCountry.I給出了值作爲india.Used console.log來打印變量。使用console.log打印出前三個myCountry的信件。編譯器拋出的錯誤 沒有將myCountry的長度記錄到控制檯。如何聲明變量以及如何使用子串

回答

2

substring不會改變原來的變量,它把結果返回,這樣做:

myCountry = myCountry.substring(0, 3); 
console.log(myCountry); // "ind" 
1

試試這個:

myCountry = myCountry.substring(0,3);