This content originally appeared on DEV Community and was authored by Sojin Samuel
I recently found out, using javascript i can find out the battery level of the current systems, i was really fascianted when i find out.
It wasnt that long ago, may be 2 - 3 days max i think.
I know javascript can do much more amazing things that i can never imagine.
As a javascript developer, i know you're already aware of a lot of features like in this case navigator.getBattery()
A code snippet from stackoverflow to find out your current batterl level:
`navigator.getBattery().then(function(battery) {
var level = battery.level;
console.log(level);
});`
I want to now more what javascript can do, which will excite me more to continue my journey.
can you list out some amazing things javascript can do like in the above case.
This content originally appeared on DEV Community and was authored by Sojin Samuel
Sojin Samuel | Sciencx (2022-07-06T13:33:37+00:00) Can you list out some amazing things Javascript can do. Retrieved from https://www.scien.cx/2022/07/06/can-you-list-out-some-amazing-things-javascript-can-do/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.