This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 👍 ✔ originally posted on: | |
// https://dirask.com/posts/JavaScript-and-animated-sinus-in-console-VjvxlD | |
// we can run this code online under above link ☘ | |
// | |
function printSine(x1, x2) { | |
var dx = 3.14 / 4.0; // x axis step | |
var dy = 1.0 / 5.0; // y axis step | |
function printLine(character) { | |
var line = ''; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 👍 ✔ originally posted on: | |
// https://dirask.com/posts/10Wwaj | |
// we can run this code online under above link ☘ | |
// | |
<!doctype html> | |
<html> | |
<body> | |
<div> | |
<img id="image" style="border: 1px solid silver; width: 320px; height: 240px" /> |