Sane
All Star
Who doesn't like head first
Kinda off topic, but how much capital are we talking? for the start ups mentioned in this thread to get off the ground. Give me a round about number.
Who doesn't like head first
You guys give some good advice. Really motivating. I just got accepted to A&M for computer engineering. I hear the program is tough so I definitely want to go into it with some sort of programming knowledge. If I have time I plan on learning python in the summer.
I also keep hearing a lot about matlab in relation to programming and excel. Can someone comment on that?
var a = 5;
var b = "5";
if(a==b)
{
console.log("true");
}
var a = 5;
var b = "5";
if(a===b)
{
console.log("true");
}
Here's a nice article on picking your first language:
http://lifehacker.com/which-programming-language-should-i-learn-first-1477153665/1477749117/@normun
I remember when i started to get back into programming sometime last year, I initially chose Python, but I ultimately decided to go with Javascript because of it' syntactical similarity to C... which was the language I tried to learn way back in the day but stopped. Python simplifies a lot of things, such as not needing to declare variables and the use of brackets instead of white-space. I just found those two concepts strange due to me being accustomed to a C-style syntax. I see Javascript as having a lot of growth in the future due to the fact that it is in every browser, and in conjunction with HTML/CSS, can even be used to make windows 8 apps.
Do you code in just straight up Javascript or do you use a library like JQuery?
I've been learning Javascript but at the moment I'm using Backbone js which uses jquery, I'm wondering if it's better for me to code in raw Javascript with no framework/library or just continue with JQuery
function squareNum(number)
{
return number * number;
}
squareNum(5);
function calcRect(length, width)
{
return length * width;
}
calcRect(5,7);
function repeatText()
{
console.log("Hi, this is a test mesage");
console.log("This is message 2");
console.log("This is message 3");
}
repeatText();
function addNumber(num1, num2) //create a simple function to add 2 numbers
{
return num1 + num2;
}
function multiplyNumber(num1, num2) //create a simple function to multiply 2 numbers
{
return num1 * num2;
}
console.log(addNumber(4,6); // the output would be 10. 4 and 6 are added together
console.log(multiplyNumber(5,10); //the output would be 50. 5 and 10 are multiplied together
console.log(multiplyNumber(addNumber(3,4), 8));
console.log(multiplyNumber(addNumber(addNumber(3,4),4),8));