Web Development Community

Learn Web Development Free in Skillwaala

Back to Categories
User
User
Manny

1 week ago

Web Dev

What is web dev

User
Neha

1 month ago

doubt

sir aaj mene kuch side ka code sekha tha. Background-color : #219ff3 .tha color:#fffff. boder:#y78fff tha name na derection fer properties ne kam kese kiya

User
Neha

1 month ago

Git

Sir jab me git par cd , PWD and other command chalake dekhe the or dusre din dekha to git par command shuru se start hui thi pichhali command ko dunga per nahin Mili

roop Comment

Git Bash me commands aur location session ke saath reset ho sakti hai. Dusre din open karne par naya session start hota hai, isliye purani cd, pwd commands nahi dikhti.

2 weeks ago
User
Neha

1 month ago

QUESTION

git repository and github repository me antar

Neha Comment

GIt repository is a local collection of project files .and github repository is a copy of your project hosted online on git hub server , which allows for collaboration whit other

1 month ago
Devanshu Sir Trainer reply

Git Repository local machine par project ki version history store karti hai, jabki GitHub Repository usi Git repository ka online version hota hai, jo backup, sharing aur team collaboration ke liye use kiya jata hai.

1 month ago
User
Manny

1 month ago

Please help ...πŸ₯Ή

let a = 10 let b = 20 console.log("a :- "+a) console.log("b :- "+b); [a,b] = [b,a]; console.log("a :- "+a) console.log("b :- "+b) console.log(a,b)

Devanshu Sir Trainer reply

Yes, your code is correct. [a, b] = [b, a] JavaScript me array destructuring ka use karke do variables ki values ko bina third variable ke swap karta hai.

1 month ago
User
Manny

1 month ago

JavaScript

What is function in js.

Devanshu Sir Trainer reply

A function in JavaScript is a reusable block of code that performs a specific task and executes only when it is called.

1 month ago