"wonderful day".substring(3,7); in ra màn hình derf
console.log("January".substring(0,3)); in ra Jan
console.log("Melbourne is great".substring(0,12)); in ra Melbourne is
console.log("Hamburgers".substring(3.10)); in ra burgers
var myAge = 19 : khai báo tuổi = 19
var myname = "Minh" : khai báo tên Minh ( và đặt trong dấu "" kép )
var myCountry = "myCountry" : gọi var là myCountry
console.log("myCountry".length); in ra số chiều dai của myCountry
console.log("myCountry".substring(0,3) in ra 3 chữ cái đầu myC
confirm("I am ready to play!");
=============================================================
var divideByThree = function (number) { :khai báo chức năng và cung cấp cho nó 1 cái tên
var val = number / 3; : khai báo 1 biến val
console.log(val); : in ra giá trị của val
};
=============================================================
foodDemand("Cake"); gọi hàm foodDemand
thêm ví dụ : foodDemand("food");
var foodDemand = function(food){
console.log("I want to eat" + " " + food);
};
===============================================================
var orangeCost= function(price){
var val = price * 5;
console.log(val);
}
orangeCost(5);
tính giá 5 orange.
==============================================================
================================================================
var sleepCheck=function(numHours){
if(numHours >= 8 )
{
return "You're getting plenty of sleep! Maybe even too much!";
}
else
{
return "Get some more shut eye!";
}
}
check giờ ngủ
====================================================================
=======================================================================
var userChoice = prompt("Do you choose rock, paper or scissors?"); //in ra màn hình
var computerChoice = Math.random();
if (computerChoice < 0.34) {
computerChoice = "rock";
} else if(computerChoice <= 0.67) {
computerChoice = "paper";
} else {
computerChoice = "scissors";
} console.log("Computer: " + computerChoice);
var compare = function(choice1, choice2) {
if(choice1 === choice2) {
return "The result is a tie!";
}else if(choice1 === "rock"){
if(choice2 === "scissors")
{
return "rock wins"
}
else{
return "paper wins"
}
}
else if(choice === "paper"){
if(choice2 === "rock"){
return "paper wins"
}
else{
return"scissors wins"
}
}
};
0 nhận xét:
Đăng nhận xét