1 week ago
Web Dev
What is web dev
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
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
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.
1 month ago
QUESTION
git repository and github repository me antar
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
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
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)
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
JavaScript
What is function in js.
A function in JavaScript is a reusable block of code that performs a specific task and executes only when it is called.