prop("Hak Sahibi").name()
/* Sonuç: "Edip Cansever" */
prop("e-mail").email()
/* Sonuç: example@örnek.com */
id()
/* Bu sayfanın id'si: 9137fd6683814e7faed376ee09b5ea92 */
prop("Relation").first().id()
/* Sonuç: fb7eacd550794395a2885de56d5b8d84 */
[1, 3, 5, 20].at(3)
/* Sonuç: 20 */
at(["Ali", "Veli", "Deli", 49, 50], 0)
/* Sonuç: Ali */
first(["İstanbul", 7, "tepe"])
/* Sonuç: İstanbul*/
["a", "b", "c"].last()
/* Sonuç: c */
slice(["Ali", "Veli", "Deli", 49, 50], 1, 4)
/* Sonuç: Veli, Deli, 49 -> listenin 1 numaralı elemanından(Veli) 4 numaralı elemana(50) kadar, 4 numaralı eleman dahil değil */
["Ali", "Veli", "Deli", 49, 50].slice(2)
/* Sonuç: Deli, 49, 50 -> 2 numaralı elementten(dahil) sona kadar */
concat(["Ali", "Veli", "Deli"], [49, 50])
/* Sonuç: Ali, Veli, Deli, 49, 50 */
["Ali", "Veli", "Deli", 49, 50].sort()
/* Sonuç: 49, 50, Ali, Deli, Veli */
["Ali", "Veli", "Deli", 49, 50].sort().reverse()
/* Sonuç: Veli, Deli, Ali, 50, 49 */
join(["Ali","Veli","Deli","Peri"],"\\n")
/* "\\n" işareti satır sonu ekler ve sonraki dizi alt satıra geçer.
Sonuç: Ali
Veli
Deli
Peri */
join(["ALi","Veli","Deli","Peri"]," | ")
/* Sonuç: Ali | Veli | Deli | Peri */
split("3,5,8", ",")
/* Sonuç: 3, 5, 8 -> virgülden sonra boşlukları kendisi koyuyor, yani listeliyor kendiliğinden */
unique([1, 1, 2, 5, 5, "a"])
/* Sonuç: 1, 2, 5, a */
includes(["Hayat","bayat", "sakat", "takat"], "Haya")
/* Sonuç: false */
["Hayat","bayat", "sakat", "takat"].includes("Hayat")
/* Sonuç: true */
includes([17, 25, 34], "34")
/* Sonuç: false */
[17, 25, 34].includes(34)
/* Sonuç: true */
find([1, 2, 3, 7], current == toNumber(true) + 2)
/* Sonuç: 3 */
findIndex(["a","b", "c", "e", "f"], current == "e")
/* Sonuç: 3 */
[23, 4, 29, -5, 7].filter(current < 20).sort()
/* Sonuç: -5, 4, 7 */
[23, 4, 29, -5, 7].some(current < 20)
/* Sonuç: true */
[23, 4, 29, -5, 7].every(current < 20)
/* Sonuç: false */
map([1, 2, 3], current + 1)
/* Sonuç: 2, 3, 4 */
[["a","b","c"], [1, 2, "a"]].flat()
/* Sonuç: a, b, c, 1, 2, a */
flat
let(isim, "Edip Cansever", "İşte karşınızda " + isim + "!")
/* Sonuç: İşte karşınızda Edip Cansever! -> Bu ne işe yarıyor? Burada ve diğer formüllerde bu değişkenleri dinamik hale getirebilirsiniz. Örneğin, "Edip Cansever" yazan yer, bir listenin İsimler sütunu/prop'u olabilir, ve hepsi ile teker teker uğraşmadan tek seferde hepsini o işlemden geçirebilirsiniz. */
lets(İsim, "Edip Cansever", Sunuş, "İşte Karşınızda ", Sunuş + İsim + "!")
/* Sonuç: İşte Karşınızda Edip Cansever! */
prop("Task").map(current.prop("Duration")).map(
lets(dure, current,
name, prop("Task").find(current.prop("Duration") == dure),
name.prop("Name").style("blue")
+ " - " + name.prop("Duration")
)
).join("\\n")
[23, 4, 29, -5, 7].every(current < 20)
map([1, 2, 3], current + 1)
[1, 2, 3].map(index)
/*Sonuç: 0, 1, 2 */
[1, 2, 3].map(current + index)min
/*Sonuç: 1, 3, 5 */
<aside> <img src="https://prod-files-secure.s3.us-west-2.amazonaws.com/24c32602-430c-48af-9abb-1ec3186d25f1/d41f60c1-ec50-4241-b74c-59e1885a11a3/loftyconcept-high-resolution-logo-black-transparent_(1).png" alt="https://prod-files-secure.s3.us-west-2.amazonaws.com/24c32602-430c-48af-9abb-1ec3186d25f1/d41f60c1-ec50-4241-b74c-59e1885a11a3/loftyconcept-high-resolution-logo-black-transparent_(1).png" width="40px" /> Created by yel | @Yücel
https://loftyconcept.ck.page/012ddc0dd1 — Twitter | Youtube | Website
https://senja.io/p/loftyconcept/r/dHPTep ****⭐⭐⭐⭐⭐
</aside>