Skip to content

Commit cc92a49

Browse files
authored
Update README.md
1 parent 689abfc commit cc92a49

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
let str = "Hello world, welcome to the JS Universe.";
7070
console.log(str.length); // 40
7171
```
72-
72+
7373
<a name="interview"></a><a name="1.6"></a>
7474
- [1.6](#length) **Interview Qus**: Tricky JavaScript Interview Questions and Answers
7575

@@ -116,3 +116,10 @@ user.age = 5;
116116

117117
console.log(user); // TypeError: Cannot assign to read only property 'age' of object '#<Object>'
118118
```
119+
120+
<a name="rename"></a><a name="1.7"></a>
121+
- [1.5](#rename) **rename**: Rename multiple files extentions at once by a command (Just for Win).
122+
123+
```javascript
124+
Get-ChildItem *.css | Rename-Item -NewName { $_.name -Replace '\.css','.scss' }
125+
```

0 commit comments

Comments
 (0)