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>

関連記事

スポンサーリンク

EC-CUBEのダウンロードページ(過去のバージョン)

ホームページ製作・web系アプリ系の製作案件募集中です。

上に戻る