Library tutorials & articles
Number Operations
There are ways to make modifying integers and other number variables much more quick then they usually are. Want to know how? Read on...
I'll teach you speedy number operations in this tip. Please note: varName
represents a variable, so I don't have to explain that to you over and over.
varName can be changed with any variable. Now, let's
get on with it...
Don't you hate having to write out stuff like:varName = varName + 1
Well there is an easier way!! You can simply use:varName ++
This will add 1 to your number. ++ simply adds 1. What if you wanted
to add another number, like 5? Well, there's a good way to do this too. Just
use:varName =+ 5=+ tells JAVA that you're adding to your integer. Just put a number
after it and it will be added! Simple! I hope this has been helpful.
Related articles
Related discussion
-
VB.NET: Hide and show table using radio buttons
by converter2009 (1 replies)
-
Java Script, File uploading on ftp server using java script code
by h_c_a_andersen (2 replies)
-
.NET Developer in Ghana Required....
by sysview (0 replies)
-
Problem when using TemplateField and ImageButton
by ashiquemca (15 replies)
-
problem with special characters
by avlisodraude (1 replies)
Related podcasts
-
jQuery in ASP.NET
In this episode Chris Brandsma, Rick Strahl, Dave Ward, Bertrand Le Roy, Scott Koon, and Steven Harman discuss Microsoft's jQuery in ASP.NET announcement.This episode of the Alt.NET Podcast is brought to you by LLBLGen Pro, the most mature O/R mapper and code generator out there.Are you loo...
Events coming up
-
Dec
8
December Silicon Valley Ruby Meetup
Moffett Field, United States
In a World of Middleware, Who Needs Monolithic Applications? by Jon Crosby With Rack emerging as the standard for composing web applications and services, most recently with Rails adoption, an architectural shift is taking place. Learn how to create next generation web services by reusing existing Rack middleware and supplementing with your own components and micro-frameworks like Sinatra. Bio : Jon likes music, the Open Web, Ruby, Erlang, Haskell, Objective-C, JavaScript and coffee.
I've recently took an interest in other languages such as C++ and JavaScript and also .NET. Which are both very similar.
Just to say, great code sniplet. This would have been usefull a few weeks ago! Also, don't math variables have to be declared in JS? Like in C++:
Goto www.learnasp.com/learn
you can learn free asp scripting and it is quite comprehensive.
Sorry... I don't know ASP o_O
Im an aspiring ASP developer but lack the know how please help
This thread is for discussions of Number Operations.