We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 689abfc commit cc92a49Copy full SHA for cc92a49
README.md
@@ -69,7 +69,7 @@
69
let str = "Hello world, welcome to the JS Universe.";
70
console.log(str.length); // 40
71
```
72
-
+
73
<a name="interview"></a><a name="1.6"></a>
74
- [1.6](#length) **Interview Qus**: Tricky JavaScript Interview Questions and Answers
75
@@ -116,3 +116,10 @@ user.age = 5;
116
117
console.log(user); // TypeError: Cannot assign to read only property 'age' of object '#<Object>'
118
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