You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`location` objesi, belgenin geçerli (URL) konumunu almak için kullanılır ve konumunu manipüle etmek için farklı yöntemler sağlar. Geçerli konuma şu şekilde erişilebilir
8
+
9
+
```javascript
10
+
window.location
11
+
//veya
12
+
document.location
13
+
//veya
14
+
location
15
+
```
16
+
17
+
> _**Note**_: `window.location` ve `document.location` aynı konum objesine referans verir.
18
+
19
+
Aşağıdaki URL örneğini ele alalım ve `location` objesinin farklı özelliklerini inceleyelim
0 commit comments