Javascript Tagalog - 문자열 charAt 메서드

Disclaimer: This is a Blog i made with the initial intention of reinforcing my knowledge in JS. I just thought sharing my blogs might be helpful for someone since they are written in tagalog/taglish. Incase of Misinformation I won't be responsible for it and you can comment on the blog to address the mistake or email me. I'm always trying my best to be as accurate as possible. take a look at other resources just to be sure.
Ano ngaba ang String charAt method sa Javascript?
파노 가미틴:
첫 번째 인수 - bigay 모 영 지수(숫자) 타포스 re return niya yung 캐릭터 na nasa index nayon

const x = 'Hello'

console.log( x.charAt(0) ) // H
console.log( x.charAt(1) ) // e
console.log( x.charAt(2) ) // l
console.log( x.charAt(3) ) // l
console.log( x.charAt(4) ) // o

// di naapektuhan yung original string
console.log( x ) // Hello


알림:
"이것은 문자열에 유니코드 문자가 포함되어 있지 않은 경우에만 작동합니다."
따라서 이모지 또는 유니코드 문자를 사용할 수 있습니다match 방법


baka 지나치게 단순화되고 부정확한 정보 nasulat ko 그래서 여기에 더 자세한 문서가 있습니다(영어).
MDN Documentation - String charAt Method
더 많은 타갈로그어 Javascript 학습 리소스:
https://javascript-in-tagalog.netlify.app

좋은 웹페이지 즐겨찾기