JavaScript obje method tanımlama 17 Kasım 202217 Kasım 2022 admin Genel const test={ 'my'(){ console.log("SUM") ; } } test.my() //SUM test['my']() //SUM