Ano ngaba ang Math.min sa Javascript?
Math Function siya na i re-return yung pinakamataas value sa mga binigay na parameters/arguments (also i ta-try ni js na i convert ang mga binigay na value as a number if hindi number yung binigay)
console.log(Math.max(-1,0,1))// -1console.log(Math.max('3',4,5))// 5constx=[1,2,3]consty=newSet([0,1,2,3,4])// Using spread operator para mapass mga values as parametersconsole.log(Math.max(...y))// 4console.log(Math.max(...x))// 3
NaN kapag nag tinry mo mag pass ng hindi number or any na hindi pwede maconvert as a number
console.log(Math.max({}))// NaN
More tagalog Javascript Learning Resources:
https://javascript-methods-in-tagalog.vercel.app/
Top comments(0)
Subscribe
For further actions, you may consider blocking this person and/orreporting abuse