Javascript Tagalog - 문자열 포함 방법
6602 단어 tagalogpinoyincludesjavascript
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 includes method sa Javascript?
ko 설명 ng madalian 시도,
예를 들어 yung string ko는 "Hello"이고 "Hello"diba를 할 수 있습니까? 그래서 "Hello".includes('o') == true
yung 포함 메소드 반환 niya는 부울 값(true 또는 false)입니다.
파노 가미틴:
첫 번째 인수 - yung string na gusto mo i search if included if include siya sa original string.
const x = 'Hello World'
console.log( x.includes('foo') ) //false
console.log( x.includes('Hello') ) // true
console.log( x.includes('World') ) // true
//Case Sensitive
console.log( x.includes('world') ) // false
//Hindi naapektuhan yung original String
console.log( x ) // 'Hello World'
두 번째 인수(선택 사항, 기본값은 0) - kung sang index ng string siya mag-uumpisa mag search.
//Searching sa 'Hello World
console.log( x.includes('Hello',0) ) // false
//Searching sa 'ello World
console.log( x.includes('Hello',1) ) // false
//Searching sa 'llo World
console.log( x.includes('llo',2) ) // true
대소문자를 구분하지 않는 해결 방법
const a = 'Hello World'
const b = 'WoRlD'
const x = a.toLowerCase()
const y = b.toLowerCase()
console.log(x.includes(y)) // true
// Shorter Version
console.log( a.toLowerCase().includes( b.toLowerCase() ) ) //true
niyo muna yung dalawang string sa 소문자 또는 대문자 bago i pag-kumpara로 변환합니다.
baka 지나치게 단순화되고 부정확한 정보 nasulat ko 그래서 여기에 더 자세한 문서가 있습니다(영어).
MDN Documentation - String includes Method
더 많은 tagalog Javascript 학습 리소스:
https://javascript-in-tagalog.netlify.app
Reference
이 문제에 관하여(Javascript Tagalog - 문자열 포함 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mmvergara/javascript-tagalog-string-includes-method-4lb6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)