Skip to content

Instantly share code, notes, and snippets.

View dirask's full-sized avatar
🎯
Focusing

Dirask dirask

🎯
Focusing
View GitHub Profile
@dirask
dirask / JavaScript and animated sinus in console example 1
Created June 28, 2020 20:33
JavaScript and animated sinus in console example 1
// 👍 ✔ 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 = '';
// 👍 ✔ 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" />