ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
Next recommended video: th-cam.com/video/O1UizGrR79U/w-d-xo.html (JavaScript Interview Questions [mid-senior level])
Would you use my solution in your interview? Please share if you have other solution.
function check(str1,str2){let a= str1.split('')let b= str2.split('') if(str1.length!==str2.length){ return false }let res= b.map(e=> a.includes(e))res.every(e=> {if(e===true){console.log('It is anagram')}else{console.log('it is not')}})}check('sagar', 'wagas')
whats the function of (str) =>{}does str take both parameters from stringA and String B? Im begginer so dont be rude
Next recommended video: th-cam.com/video/O1UizGrR79U/w-d-xo.html (JavaScript Interview Questions [mid-senior level])
Would you use my solution in your interview? Please share if you have other solution.
function check(str1,str2){
let a= str1.split('')
let b= str2.split('')
if(str1.length!==str2.length){
return false
}
let res= b.map(e=> a.includes(e))
res.every(e=> {
if(e===true){
console.log('It is anagram')
}else{
console.log('it is not')
}
})
}
check('sagar', 'wagas')
whats the function of (str) =>{
}
does str take both parameters from stringA and String B? Im begginer so dont be rude