๐ Heart Pattern using JavaScript! ๐ป
๐ก Output: A cute heart printed in the console ๐
๐ฅ Tap โค๏ธ for more fun code snippets!
let n = 10;
let str = "";
for (let i = n / 2; i < n; i += 2) {
for (let j = 1; j < n - i; j += 2) str += " ";
for (let j = 1; j < i + 1; j++) str += "*";
for (let j = 1; j < n - i + 1; j++) str += " ";
for (let j = 1; j < i + 1; j++) str += "*";
str += "\n";
}
for (let i = n; i > 0; i--) {
for (let j = 0; j < n - i; j++) str += " ";
for (let j = 1; j < i * 2; j++) str += "*";
str += "\n";
}
console.log(str);
๐ก Output: A cute heart printed in the console ๐
๐ฅ Tap โค๏ธ for more fun code snippets!
โค17๐1
๐๐ฒ๐ฎ๐ฟ๐ป ๐๐ผ๐ฑ๐ถ๐ป๐ด ๐ก๐ผ๐, ๐ฃ๐ฎ๐ ๐๐ณ๐๐ฒ๐ฟ ๐ฃ๐น๐ฎ๐ฐ๐ฒ๐บ๐ฒ๐ป๐!๐
Unlock Opportunities with 500+ Elite Hiring Partners
Eligibility:- BE/BTech / BCA / BSc
๐ 2000+ Students Placed
๐ค 500+ Hiring Partners
๐ผ Avg. Rs. 7.4 LPA
๐ 41 LPA Highest Package
๐๐ผ๐ผ๐ธ ๐ฎ ๐๐ฅ๐๐ ๐๐ฒ๐บ๐ผ๐:-
https://pdlink.in/4hO7rWY
Hurry๐โโ๏ธ, limited seats available!
Unlock Opportunities with 500+ Elite Hiring Partners
Eligibility:- BE/BTech / BCA / BSc
๐ 2000+ Students Placed
๐ค 500+ Hiring Partners
๐ผ Avg. Rs. 7.4 LPA
๐ 41 LPA Highest Package
๐๐ผ๐ผ๐ธ ๐ฎ ๐๐ฅ๐๐ ๐๐ฒ๐บ๐ผ๐:-
https://pdlink.in/4hO7rWY
Hurry๐โโ๏ธ, limited seats available!
โค1
๐๐ฅ๐๐ ๐ข๐ป๐น๐ถ๐ป๐ฒ ๐๐ผ๐๐ฟ๐๐ฒ๐ ๐ง๐ผ ๐๐ป๐ฟ๐ผ๐น๐น ๐๐ป ๐ฎ๐ฌ๐ฎ๐ฑ ๐
Learn Fundamental Skills with Free Online Courses & Earn Certificates
- AI
- GenAI
- Data Science,
- BigData
- Python
- Cloud Computing
- Machine Learning
- Cyber Security
๐๐ข๐ง๐ค ๐:-
https://linkpd.in/freecourses
Enroll for FREE & Get Certified ๐
Learn Fundamental Skills with Free Online Courses & Earn Certificates
- AI
- GenAI
- Data Science,
- BigData
- Python
- Cloud Computing
- Machine Learning
- Cyber Security
๐๐ข๐ง๐ค ๐:-
https://linkpd.in/freecourses
Enroll for FREE & Get Certified ๐
โค5
Git Commands
๐ git init โ Initialize a new Git repository
๐ฅ git clone <repo> โ Clone a repository
๐ git status โ Check the status of your repository
โ git add <file> โ Add a file to the staging area
๐ git commit -m "message" โ Commit changes with a message
๐ git push โ Push changes to a remote repository
โฌ๏ธ git pull โ Fetch and merge changes from a remote repository
Branching
๐ git branch โ List all branches
๐ฑ git branch <name> โ Create a new branch
๐ git checkout <branch> โ Switch to a branch
๐ git merge <branch> โ Merge a branch into the current branch
โก๏ธ git rebase <branch> โ Apply commits on top of another branch
Undo & Fix Mistakes
โช git reset --soft HEAD~1 โ Undo the last commit but keep changes
โ git reset --hard HEAD~1 โ Undo the last commit and discard changes
๐ git revert <commit> โ Create a new commit that undoes a specific commit
Logs & History
๐ git log โ Show commit history
๐ git log --oneline --graph --all โ View commit history in a simple graph
Stashing
๐ฅ git stash โ Save changes without committing
๐ญ git stash pop โ Apply stashed changes and remove them from stash
Remote & Collaboration
๐ git remote -v โ View remote repositories
๐ก git fetch โ Fetch changes without merging
๐ต๏ธ git diff โ Compare changes
Donโt forget to react โค๏ธ if youโd like to see more content like this!
๐ git init โ Initialize a new Git repository
๐ฅ git clone <repo> โ Clone a repository
๐ git status โ Check the status of your repository
โ git add <file> โ Add a file to the staging area
๐ git commit -m "message" โ Commit changes with a message
๐ git push โ Push changes to a remote repository
โฌ๏ธ git pull โ Fetch and merge changes from a remote repository
Branching
๐ git branch โ List all branches
๐ฑ git branch <name> โ Create a new branch
๐ git checkout <branch> โ Switch to a branch
๐ git merge <branch> โ Merge a branch into the current branch
โก๏ธ git rebase <branch> โ Apply commits on top of another branch
Undo & Fix Mistakes
โช git reset --soft HEAD~1 โ Undo the last commit but keep changes
โ git reset --hard HEAD~1 โ Undo the last commit and discard changes
๐ git revert <commit> โ Create a new commit that undoes a specific commit
Logs & History
๐ git log โ Show commit history
๐ git log --oneline --graph --all โ View commit history in a simple graph
Stashing
๐ฅ git stash โ Save changes without committing
๐ญ git stash pop โ Apply stashed changes and remove them from stash
Remote & Collaboration
๐ git remote -v โ View remote repositories
๐ก git fetch โ Fetch changes without merging
๐ต๏ธ git diff โ Compare changes
Donโt forget to react โค๏ธ if youโd like to see more content like this!
โค13
๐คกMost crypto channels just throw charts and hype at you.
This one gives clear, real moves instead.
Know what to buy, when to sell, and how to avoid costly mistakes.
New to crypto or already trading? Get clear moves, not noise.
๐ Join now and trade smarter:
https://t.me/+3xRw-RoEHhk0ZDJi
This one gives clear, real moves instead.
Know what to buy, when to sell, and how to avoid costly mistakes.
New to crypto or already trading? Get clear moves, not noise.
๐ Join now and trade smarter:
https://t.me/+3xRw-RoEHhk0ZDJi
โค2
โจ๏ธ JavaScript Neat Tricks you should know
โค1
๐ ๐๐ฎ๐๐ฎ ๐๐ป๐ฎ๐น๐๐๐ถ๐ฐ๐ ๐๐ฅ๐๐ ๐๐ฒ๐บ๐ผ ๐ฐ๐น๐ฎ๐๐ ๐ถ๐ป ๐๐๐ฑ๐ฒ๐ฟ๐ฎ๐ฏ๐ฎ๐ฑ/๐ฃ๐๐ป๐ฒ ๐
๐ฅ Learn Data Analytics with Real-time Projects ,Hands-on Tools
โจ Highlights:
โ 100% Placement Support
โ 500+ Hiring Partners
โ Weekly Hiring Drives
๐๐ผ๐ผ๐ธ ๐ฎ ๐๐ฅ๐๐ ๐๐ฒ๐บ๐ผ๐:-
๐น Hyderabad :- https://pdlink.in/4kFhjn3
๐น Pune:- https://pdlink.in/45p4GrC
๐น Noida :- https://linkpd.in/DaNoida
Hurry Up ๐โโ๏ธ! Limited seats are available.
๐ฅ Learn Data Analytics with Real-time Projects ,Hands-on Tools
โจ Highlights:
โ 100% Placement Support
โ 500+ Hiring Partners
โ Weekly Hiring Drives
๐๐ผ๐ผ๐ธ ๐ฎ ๐๐ฅ๐๐ ๐๐ฒ๐บ๐ผ๐:-
๐น Hyderabad :- https://pdlink.in/4kFhjn3
๐น Pune:- https://pdlink.in/45p4GrC
๐น Noida :- https://linkpd.in/DaNoida
Hurry Up ๐โโ๏ธ! Limited seats are available.
โค1
Sample email template to reach out to HRโs as fresher
I hope you will found this helpful ๐
Hi Jasneet,
I recently came across your LinkedIn post seeking a React.js developer intern, and I am writing to express my interest in the position at Airtel. As a recent graduate, I am eager to begin my career and am excited about the opportunity.
I am a quick learner and have developed a strong set of dynamic and user-friendly web applications using various technologies, including HTML, CSS, JavaScript, Bootstrap, React.js, Vue.js, PHP, and MySQL. I am also well-versed in creating reusable components, implementing responsive designs, and ensuring cross-browser compatibility.
I am confident that my eagerness to learn and strong work ethic will make me an asset to your team.
I have attached my resume for your review. Thank you for considering my application. I look forward to hearing from you soon.
Thanks!
I hope you will found this helpful ๐
โค1