More Fun with Arrays 終わった
2012-11-08 Thursday先週、日報書けるような活動ができなかったので、リハビリのため Codecademy.
JavaScript Fundamentals の More Fun with Arrays がおわったー。
これであと残りは 1コースと4演習。本日の、へー、と思ったことをメモしておきます。
- splice 使った Array.splice
- push も使った Array.push
object[array[i]]
みたいに書けるのかー。なるほど。- 入れ子 loop して、
array[i][j][k]
みたいに書けるのかー。そりゃそうか。 array[i].key
みたいに書けるのかー。そりゃそうか。- for in loop でなぜか var 忘れがち。たぶんまだ書き慣れてないんだわ。
- Array の名前に複数形の s つけるんだけど、あとから参照するときに s の有無で間違えてるの気づかずにハマったりした。初心者乙。
- 同じコース内で quotation がシングルだったりダブルだったりっていうどうでもいいところが気になる。
Section 5 の Putting It All Together、最終的にはこんなん。トランプのカードを作って Robert と Joe に 5枚ずつ配った。
//here's our players array from exercise 1
var players = [];
players[0] = {'name': 'Robert', hand: []};
players[1] = {'name': 'Joe', hand: []};
//here's our code to create the deck
var suits = ['clubs','diamonds','hearts','spades'];
var ranks = [2,3,4,5,6,7,8,9,10,'J','Q','K','A'];
var deck = [];
for (var i = 0; i < suits.length; i++) {
for (var j = 0; j < ranks.length; j++) {
var card = {'rank': ranks[j], 'suit':suits[i]};
deck.push(card);
}
}
//This will shuffle the deck. Nothing for you to do here. Just here to
//make the final output a little more realistic
deck.sort(function() {return 0.5 - Math.random()});
//Deal 5 cards to each player. Make sure you deal them out
//one player at a time, just like in a real poker game.
var c = 0
for (var i = 0; i < 5; i++) {
for (var p = 0; p < players.length; p++) {
var card = deck[c];
players[p].hand.push(card);
c++;
}
}
Author
Yuko Honda Morita (yukop) : yukop.com
飯能→東京→シリコンバレー。夫と猫2匹と暮らしてます。作ったり学んだり踊ったりするのが好き。
Born in Japan, living in California with my husband and two cats. "A bit of a geek and a bit of a geek fan and a bit of an artist." ->
Latest Posts
Japanese
- 2016-02-20 » フロントバンパーの外し方メモ - SUBARU XV Crosstrek 2014
- 2016-01-19 » Singular they
- 2015-12-21 » San Joaquin River NWR
- 2015-12-20 » San Luis NWR
- 2015-11-22 » EAD(労働許可証)更新 その1
- 2015-11-08 » Burrowing Owl アナホリフクロウ
- 2015-10-31 » Tire Pressure Warning
English
- 2014-10-18 » Halloween Decorations
- 2014-08-01 » Cat Parasite
- 2014-07-29 » How to Make Dumplings From Scratch
- 2014-07-25 » Moving to an Unfamiliar Land That Speaks a Foreign Language
- 2014-07-23 » Going to See a Dentist
- 2014-07-22 » Agent Cooper's Favorite Cherry Pie
- 2014-07-19 » It's Nice Living with Two Kittens