깃 다운후 플젝 폴더에서 진행
…or create a new repository on the command line
echo "# example" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/songk1992/example.git
git push -u origin main
…or push an existing repository from the command line
git remote add origin https://github.com/songk1992/example.git
git branch -M main
git push -u origin main
git add -A
git commit -m "ReadME 수정"
git push -u origin main
숫자이면 false
숫자가 아니면 true
해당되는 문자열을 찾아줌
ex)
const str1 = "(시 23:1), 여호와는 나의 목자시니 내게 부족함이 없으리로다. ";
console.log("여호와가 해당 string에서 몇번째에 나올까요? : ", str1.indexOf('여호와'));