JavaScript

Uncategorized

変数

let a=100;

let hello=’こんにちは’;

console.log(hello);

出力

こんにちは

定数

const a=”こんにちは”;

window.alert(a)

forEach


const answers = [
‘りんご’,
‘ゴリラ’,
‘ラッパ’
];
answers.forEach(answer => console.log(answer));

オブジェクト


human{
name: {
first_name: ‘太郎’,
last_name: ‘山田’
},
age: 28,
hobby: ‘テニス’
};

指定の仕方例
console.log(human.age);
console.log(human.name.first.name+ ‘ ‘ + human.name.last_name);
console.log(human[‘name’][‘first_name’]);

関数


const bmi = 56.8/(1.7**2);
console.log(bmi);

const height = 1.7;
const wieght =56.8;
const bmi = weigtt/(height**2);
comsole.log(bmi);

関数を使った例

function calculateBmi(height,weight){
return weight/(height**2);
}
console.log(calculateBmi(1.7, 56.8));

条件分岐

let message = ‘わかりません’;
if (bmi < 18.5) {
message = ‘低体重です。’;
} else if (bmi >=25) {
message = ‘肥満です’;
} else {message = ‘普通です’;
}
console.log(message);

[

コメント