[FOR HIRE] [0/2] | Web Developer, JavaScript Developer, LUA Programmer

About Me

Hi there! My name is achdef, I am a kind persons. Recently I have been foccusing on learning a lot of languages!

Known languages.
  • HTML
  • JavaScript
  • LuaU (know the basics)

If you wonder what can I do then, check the list below!

What can you do?
  • A Website with JavaScript
  • Give Free Class to learn somes of the Basic
  • Do the basics such as Events, Functions and for i,v in LuaU

Sometimes, I even share my creations in another link!

HTML Example

Button

<!doctype html>
 <html>
  <body>
   <button>Hey Portfolio!</button>
  </body>
 </html>

Result:
Hey Portfolio!
Imagine it’s covered with a box.

JavaScript (JS) Example

var name = "Police";
var role = "Police Officer";

console.log(name);
console.log(role);

var action = "Arrest";

console.log("Debugging:");
console.log(name);
console.log(role);
console.log(action);
var isWeekday = false;
var acOn = !true;

console.log("Weekday");
console.log(isWeekday);

console.log("Air conditioning");
console.log(acOn);

Output
Debugging:
Police
Police Officer
Arrest


Commisions Work

None.


Current Levels

HTML

Completed Percent: 99%
Level: Intermediate
Currently learning: Linking Webpages

JavaScript

Completed Percent: 10%
Level: Student
Currently learning: Miles to KM Converter


Queue

EMPTY


Payment

If you are paying me to do HTML, I will require 100 :roblox_light:. If it is for JavaScript, or Lua, I am completely doing it free.


Rules

You cannot cancel the order when I am almost done with it.
Before ordering, you must provide proof you can pay.
You must provide proof you have a Roblox account.


Contact

Feel free to contact me on the DevForum! Remember I can teach you somes basics of HTML.


IMPORTANT NOTE

I get all my precent from a learning website. (https://getmimo.com/projects) I appreciate if you could recommend applications that focus on learning JavaScript.

1 Like

JAVASCRIPT | UPDATE


New Playlist code that inform the user if it’s already on the list with console.log!


CODE

var song = "Don't stop me now";
var included = true;
console.log("New entry: " + song);
if (included) {
 console.log("Already included!");
}
console.log("Save and continue");

Try replacing var with block scoped variables like let or const.

/* block scoped variables */
let a = 1;

const b = "string"; // you cant change constant variables

Oh. Apologies, I learn from a application. Do you recommend any applications teaching JavaScript?

Try www dot w3schools dot com (pronounced because off-site links aren’t allowed).

It covers HTML, CSS, JavaScript, PHP, Python, Node.js and almost any other programming language.

3 Likes

Oh thanks you! Hope there is no paying things for better learning, everyone should have the same accesibility to learning.

w3schools is completely free, its for css, HTML, and javascript (I think)

A little bit broken tho. Maybe on YouTube I can find some tutorials?