Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
clean-code-javascript-tr
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Ali GOREN
clean-code-javascript-tr
Commits
833a6ea3
Unverified
Kaydet (Commit)
833a6ea3
authored
Ock 18, 2019
tarafından
Ali GOREN
Kaydeden (comit)
GitHub
Ock 18, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #2 from mertcb/master
Nesneler ve Veri Yapıları
üst
874a2b5f
e81775ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
48 deletions
+47
-48
README.md
README.md
+47
-48
No files found.
README.md
Dosyayı görüntüle @
833a6ea3
...
...
@@ -901,105 +901,104 @@ inventoryTracker('apples', req, 'www.inventory-awesome.io');
```
**[⬆ en başa dön](#içindekiler)**
## **
Objects and Data Structures
**
###
Use getters and setters
Using getters and setters to access data on objects could be better than simply
looking for a property on an object. "Why?" you might ask. Well, here's an
unorganized list of reasons why
:
## **
Nesneler ve Veri Yapıları
**
###
Setter ve Getter kullanın
Nesnelerdeki verilere erişmek için Setter ve Getter kullanmak sadece bir nesnedeki
özellikleri aramaktan daha iyi olabilir. "Neden?" diye soracaksınız. Peki, işte burada
sebeplerinin bir listesi var
:
*
When you want to do more beyond getting an object property, you don't have
to look up and change every accessor in your codebase.
*
Makes adding validation simple when doing a
`set`
.
*
Encapsulates the internal representation.
*
Easy to add logging and error handling when getting and setting.
*
You can lazy load your object's properties, let's say getting it from a
server.
*
Bir nesne özelliğini elde etmekten daha fazla şey yapmak istediğinizde kod tabanınızdaki
her erişimciyi aramanız ve değiştirmeniz gerekmez.
*
`set`
işlemi yaparken doğrulama eklemeyi kolaylaştırır.
*
İç temsili kapsüller.
*
Set ve Get işlemlerini gerçekleştirirken kayıt tutmayı (log) ve hata yakalamayı eklemek kolaydır.
*
Nesnenizin özelliklerini sunucudan alırken Lazy Load kullanabilirsiniz.
**Kötü:**
```
javascript
function
makeBankAccount
()
{
function
bankaHesabiOlustur
()
{
// ...
return
{
ba
lanc
e
:
0
,
ba
kiy
e
:
0
,
// ...
};
}
const
account
=
makeBankAccount
();
account
.
balanc
e
=
100
;
const
hesap
=
bankaHesabiOlustur
();
hesap
.
bakiy
e
=
100
;
```
**İyi:**
```
javascript
function
makeBankAccount
()
{
//
this one is
private
let
ba
lanc
e
=
0
;
function
bankaHesabiOlustur
()
{
//
bu
private
let
ba
kiy
e
=
0
;
//
a "getter", made public via the returned object below
function
getBa
lanc
e
()
{
return
ba
lanc
e
;
//
Getter aşağıda döndürülen nesne aracılığıyla public hale getirildi
function
getBa
kiy
e
()
{
return
ba
kiy
e
;
}
//
a "setter", made public via the returned object below
function
setBa
lance
(
amount
)
{
// ...
validate before updating the balance
ba
lance
=
amount
;
//
Setter aşağıda döndürülen nesne aracılığıyla public hale getirildi
function
setBa
kiye
(
deger
)
{
// ...
bakiyeyi güncellemeden önce onaylar
ba
kiye
=
deger
;
}
return
{
// ...
getBa
lanc
e
,
setBa
lanc
e
,
getBa
kiy
e
,
setBa
kiy
e
,
};
}
const
account
=
makeBankAccount
();
account
.
setBalanc
e
(
100
);
const
hesap
=
bankaHesabiOlustur
();
hesap
.
setBakiy
e
(
100
);
```
**[⬆ en başa dön](#içindekiler)**
###
Make objects have private members
This can be accomplished through closures (for ES5 and below
).
###
Nesnelerin private üyelere sahip olmasını sağlayın.
Bu, kapamalarla(closures) gerçekleştirilebilir. (ES5 ve altı için
).
**Kötü:**
```
javascript
const
Employee
=
function
(
name
)
{
this
.
name
=
name
;
const
Calisan
=
function
(
isim
)
{
this
.
isim
=
isim
;
};
Employee
.
prototype
.
getName
=
function
getName
()
{
return
this
.
name
;
Calisan
.
prototype
.
getIsim
=
function
getIsim
()
{
return
this
.
isim
;
};
const
employee
=
new
Employee
(
'John Doe'
);
console
.
log
(
`
Employee name:
${
employee
.
getName
()}
`
);
// Employee name
: John Doe
delete
employee
.
name
;
console
.
log
(
`
Employee name:
${
employee
.
getName
()}
`
);
// Employee name
: undefined
const
calisan
=
new
calisan
(
'John Doe'
);
console
.
log
(
`
Calisanin ismi:
${
calisan
.
getIsim
()}
`
);
// Calisanin ismi
: John Doe
delete
calisan
.
isim
;
console
.
log
(
`
Calisanin ismi:
${
calisan
.
getIsim
()}
`
);
// Calisanin ismi
: undefined
```
**İyi:**
```
javascript
function
makeEmployee
(
name
)
{
function
calisanOlustur
(
isim
)
{
return
{
get
Name
()
{
return
name
;
get
Isim
()
{
return
isim
;
},
};
}
const
employee
=
makeEmployee
(
'John Doe'
);
console
.
log
(
`
Employee name:
${
employee
.
getName
()}
`
);
// Employee name
: John Doe
delete
employee
.
name
;
console
.
log
(
`
Employee name:
${
employee
.
getName
()}
`
);
// Employee name
: John Doe
const
calisan
=
calisanOlustur
(
'John Doe'
);
console
.
log
(
`
Calisanin ismi:
${
calisan
.
getIsim
()}
`
);
// Calisanin ismi
: John Doe
delete
calisan
.
isim
;
console
.
log
(
`
Calisanin ismi:
${
calisan
.
getIsim
()}
`
);
// Calisanin ismi
: John Doe
```
**[⬆ en başa dön](#içindekiler)**
## **
Classes
**
## **
Sınıflar
**
### Prefer ES2015/ES6 classes over ES5 plain functions
It's very difficult to get readable class inheritance, construction, and method
definitions for classical ES5 classes. If you need inheritance (and be aware
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment