Math Functions |JavaScript Course | Logic First Tamil

preview_player
Показать описание
Javascript course with indepth explanations in tamil.

//try in console
//rounding
//floor gives prev number
//ceil gives next number
//returns square root of the number
//absolute value returns positive value of the number
32768
//min value from a set of values

//random - returns a value between 0 and 1
//dice roll - random number between 1 and 6
//random number between 1 and 100

//constants
Math.PI
Math.E

----------------------------------------------------------------------------------------------------------------
courses and playlists

Рекомендации по теме
Комментарии
Автор

Mam neenga aentha booku or website refer pannuvinga javascript learn panrathuku

ranjithkumar.
Автор

Practised waiting for next vedio...

Sister if possible idiki Ella konju assignment questions kuda add panninga.

Simham_PTN
Автор

Sooo use full ....post tha next vedio...mam..!

vayyanar
Автор

recently found your channel
its really really helpful

manikumar-vrkp
Автор

Hi ella case sensitive language layum enga upper case enga lower case nnu easy aa niyabagam vachikka shortcut ethum irukka

Eg
getElementByID ithula enga upper case nnu confusion aaguthu. Please oru suggestions thaanga

VijayanS
Автор

celsius to fahrenheit :
<script>
function convert() {
const celVal =
const fehVal = celVal * (9 / 5) + 32;
const result =
result.innerHTML = fehVal + " feh"

}
</script>

vblbmji
Автор

Mam Dom concept full poodunga please🙏🙏🙏🙏

PUVIKANTHMBCAUG-BATCH
Автор

Instead of using floor and adding 1 in random function, we can use ceil function. I have seen the same idea of yours in some other sources also. Do we have any merits of using floor rather than ceil madam?

sarangp