This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function range(start,end) { | |
if(start&&end){ | |
return Array.from({length:end-start+1},(_,i)=>start++) | |
} | |
} | |
range(3,8); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Add .gitignore file and update it then do this- | |
git rm -r --cached . | |
git add . | |
git commit -m "remove gitignore files" | |
git push |
NewerOlder