-2
var first_name = "Shaunak";
var lastName = "Gujjewar";
document.getElementById("demo").innerHTML = first_name;
document.getElementById("demo").innerHTML = lastName;
<h1><tt>JS is case sensitive.</tt></h1>
<p>
JS is case sensitive,in the example given below you will undertand that <b>JS does not accept var as VAR/Var</b>. Indeed it will accept only the <b>CamelCase/var with underscore and a hyphen</b>. But hyphen is not usually preffered as it is a reserved
function for <b>subtraction</b>.
</p>
<p id="demo"></p>
私はこのコードを入力し、それを実行したときに今、私が直面しています問題は、それが唯一のJSができるように、私はこのコードをもたらすべき変化私のlastNameのではなく、私のfirst_name.Soを表示していますfirst_name & lastNameの両方を表示します。また、JSが大文字と小文字を区別する場合、正しい変数を特定する方法は?
だけ( "デモ")のdocument.getElementByIdを置くのinnerHTML = first_nameの+ '' + lastNameの;。 –
これは普通ですが、 "デモ"の中のhtmlをfirst_name varに置き換えて、次にlast_name – Kypaz
オフトピックに置き換えます。ただし、テキスト内のハイフンに関するものはナンセンスです。 – JJJ