
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
JSのオブジェクト指向 初心者覚書 - Qiita
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Object-oriented JavaScript class furt... <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Object-oriented JavaScript class further exercises</title> </head> <body> <div id="personTxt"></div> </body> <script> function Person(first, last, age, gender, interests) { this.name = { 'first': first, 'last' : last }; this.age = age; this.gender = gender; this.interests = interests; this.bio = function() { // First define a string, and