我有 JavaScript 数组,其中存储字符串变量。我尝试了下面的代码来帮助我将 Javascript 变量转换为大写字母,
<html>
<body>
<p id="demo"></p>
<button onclick="toUppar()">Click Here</button>
<script>
Array.prototype.myUcase=function()
{
for (i=0;i<this.length;i++)
{
this[i]=this[i].toUpperCase();
}
}
function toUppar()
{
var numArray = ["one", "two", "three", "four"];
numArray.myUcase();
var x=document.getElementById("demo");
x.innerHTML=numArray;
}
</script>
</body>
</html>
但我只想将 Javascript 变量的第一个字符转换为大写。
期望的输出:One,Two,Three,Four