电脑技术学习

javascript中的逗号使用

dn001

<html>

<head>

<title></title>
<script type="text/javascript">
a="b",c="e";
'jdfoewnfoe',123,a="e",c="d";
alert(a+c)
</script>
</head>

<body>

</body>

</html>