Skip to content

Instantly share code, notes, and snippets.

View mrtampan's full-sized avatar
🎯
Focusing

Achmad Rivaldi mrtampan

🎯
Focusing
  • Bekasi, Indonesia
View GitHub Profile
<script>
// contoh benar
let a = "";
function aku(){
a = "apa cuk";
alert(a);
}
aku();
// contoh benar dalam scope
<script>
function hay(){
var hey = "";
}
function ubah() {
hey = "hallo teman";
}
ubah();
<script>
var ab = "hallo dunia";
function test() {
ab = "hello world";
alert(ab);
}
test();
</script>
<script>
var sound = new Howl({
src: ['sound.mp3']
});
sound.play();
</script>