<script type='text/javascript'>
var a=123,b='js',c=321;
a += c
document.write(a);
// 检查变量类型
document.write(typeof a)
</script>