Veri Getirme

get, getSync, fetch, fetchSync

fetch, fetchSync Fonksiyonları

Dosyamızda tanımladığımız değişkenimizi kullanıyoruz

index.js
const ArcaClient = require("arcadb");
circle-info

Eğer aradığınız değer yok ise nullarrow-up-right değerini döndürür.

circle-check

Kullanım

index.js
const ArcaClient = require("arcadb");

/*
    {
        "Number": 5
    }
*/

async function Getir() {
    console.log(ArcaClient.fetch("Number"));
    console.log(ArcaClient.fetchSync("Number"));
};

Getir();

// 5
// 5

Kullanım (Discord.JS)

Last updated

Was this helpful?