Soru & Cevap

java kod yardımı ...

02.05.2016 - 06:05

https://www.codecademy.com/en/courses/getting-started-v2/2/2?curriculum_id=506324b3a7dffd00020bf661#  burdaki bölümü kodlarını nasıl yapıcaz ?

6 Görüntülenme

2 Cevap

Sitedeki sorulara cevap verebilmek için giriş yapın ya da üye olun.

Profile picture for user gürcanataman
gürcanataman
02.05.2016 - 08:10

// Fill in with >, <, === so that the following print out true:
console.log("Xiao Hui".length  < 122); //Xiao Hui yazısının uzunluğu 122 karakterden azdır
console.log("Goody Donaldson".length > 8); //Goody Donaldson uzunluğu 8 karakterden fazladır
console.log(8*2 === 16); //8x2 , 16 ya eşittir.

picture-46518-1428343928.jpg
halitpeker
02.05.2016 - 06:14

// Here is an example of using the greater than (>) operator.
console.log(15 > 4); // 15 > 4 evaluates to true, so true is printed.

// Fill in with >, <, === so that the following print out true:
console.log("Xiao Hui".length  > 122);
console.log("Goody Donaldson".length > 8);
console.log(8*2 > 16);