javascript語言結構小記(一)

來源:互聯網
上載者:User

一:js支援 Unicode 字元集,所以可以用中文命名函數。

二:js 在Var中沒有初始化的變數,預設為undefined

三:對於未聲明也未賦值的變數,如果直接使用,會拋出一個系統層級的Error,如果用typeof(typeof是種類型運算子)操作來說,不論是否已經被聲明,都將返回一個字串”undefined”;

例:

//a 未聲明

alert(typeof(a));//undefined

alert(a);//Error

四:算術運算子。用“+”可以較方便地將一個數值轉換成字串,具體操作是將操作是將這個數值加上一個空串(也可不寫)。

例:

Var a=2.96;

Var b=1.0;

Alert(a+””+b);//得到字串”2.961”

用“-“可用來將字串裝換成數值,具體操作是將這個字串減去一個數值 0

Var a=”2.96”;

alert(a+1);//得到字串”2.961”(將數值強制轉換成字串)

alert(a-0+1);//得到數值3.96

以下是我做的一個example: 複製代碼 代碼如下:<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>js</title>
<script language="javascript">
x=5+5;
document.write(x+"<br>");
x="5"+"1";
document.write(x+"<br>");
x="5"+5;
document.write(x+"<br>");
x="10"-5;
document.write(x+"<br>");
</script>
</head>
<body>
</body>
</html>

結果:

10
51
55
5

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.