JavaScript
console.log("Hello, World!");
// For HTML document
document.write("Hello, World!");
PrototypeCodec
console.log("Hello, World!");
// For HTML document
document.write("Hello, World!");
let str = "12345.00";
str = str.substring(0, str.length - 1);
/**
* Delay for a number of milliseconds
*/
function sleep(delay) {
var start = new Date().getTime();
while (new Date().getTime() < start + delay);
}
JavaScript, often abbreviated JS, is a programming language that is one
of the core technologies of the World Wide Web, alongside HTML and CSS.
Over 97% of websites use JavaScript on the client side for web page behavior,
often incorporating third-party libraries.
[{
"id":1,
"name":"johnny"
}
{
"id":2,
"name":"Ravi"}
]
#include <conio.h>
//*50
//50
//-50
int main(void)
{
int nombre;
printf("nombre = ",nombre);
scanf("%d",&nombre);
if (nombre ==50)
{
printf("nombre = 50\n");
}
else if (nombre <50)
{
printf("nombre < 50\n");
}
else
{
printf("nombre > 50\n");
}
return 0;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
contract Loop {
function loop() public {
// for loop
for (uint i = 0; i < 10; i++) {
if (i == 3) {
// Skip to next iteration with continue
continue;
}
if (i == 5) {
// Exit loop with break
break;
}
}
// while loop
uint j;
while (j < 10) {
j++;
}
}
}
###
git remote add origin https://github.com/soniya211/Login-form-by-node.git
git branch -M main
git push -u origin main
aler("hel me"9