[課程筆記]克服JS的奇怪部分-CH6 雜談
            
            
              Udemy課程連結
課程總目錄
本篇筆記目錄:
U1 初始化
U2 「typeof」、「instanceof」與搞清楚這是什麼
U3 嚴謹模式
U1 初始化
初始化資料
var people=[
	{
		//the 'john' object
		firstname:'John',
		lastname:'Doe',
		addresses:[
			'111 Main St.',
			'222 Third st'
		]
	},
	{	//the 'jane' object
		firstname:'Jane',
		lastnam...