文件名称:JavaScript构建自己的对象示例
文件大小:36KB
文件格式:PDF
更新时间:2023-12-20 22:00:23
c ip javascript
本文实例讲述了JavaScript构建自己的对象。分享给大家供大家参考,具体如下: [removed] //构建一个CustomerBooking类 //构造函数 function CustomerBooking(bookingId,customerName,film,showDate){ this.bookingId = bookingId; this.customerName = customerName; this.film = film; this.showDate =showDate; } //getBookingId方法