Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of faid

faid

faid has asked 2 questions and find answers to 1 problems.

Stats

23
EtPoint
2
Vote count
2
questions
1
answers

About

i_can_do();
i_cannot_do();

function i_can_do(){
    var text='Batch, ';
    text+='VBScript / Vb6 (Not VB.NET), ';
    text+='JavaScript, ';
    text+='jQuery, ';
    text+='HTML / HTML Application (HTA), and ';
    text+='Java, ';
    text+='MySQL, ';
    text+='CSS.';
    alert(text);
}

function i_cannot_do(){
    var text ='Phyton, ';
    text+='C, C#, C++, ';
    text+='High Programming Language, ';
    text+='etc.';
    alert(text);
}

window.close();