2014年8月14日木曜日

開発環境

Head First JavaScript Programming (Eric T. Freeman (著)、 Elisabeth Robson (著)、 O'Reilly Media )のChapter 5(Understanding Objects: A trip to Objectville)、BE THE BROWSER(p.203)を解いてみる。

BE THE BROWSER(p.203)

コード(BBEdit, Emacs)

var song = {
        name: 'Walk This Way',
        artist: 'Run-D.M.C',
        minutes: 4,
        seconds: 3,
        genre: '80s',
        playing: false,
        play: function () {
            if (!this.playing) {
                this.playing = true;
                print('Playing ' + this.name + ' by ' + this.artist);
            }
        },
        pause: function () {
            if (this.playing) {
                this.playing = false;
            }
        }
    };

song.play();
song.pause();










						

0 コメント:

コメントを投稿