Object.toSource
オブジェクトの中身を見る
構文
object.toSource()
例文
<html>
<head>
<title>Object.toSource</title>
</head>
<body>
<!--オブジェクトの中身を見るのサンプル-->
<script type="text/javascript">
var obj = {"a":1, "b":2};
document.write(obj.toSource());
</script>
</body>
</html>
関連記事
スポンサーリンク





