473,503 Members | 2,076 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

What does this mean

I am learning Javascript; and most books only give you partial
definitions for the functions they show you. Here is a line of code
from a browser sniffing function:

var isWin = (navigator.platform.indexOf("Win") !=-1) ? true:false;

What does the -1 stand for.

Excuse me for such a basic question, but I can't find the answer
anyway.

Thanks
Jul 23 '05 #1
8 1704
On 17 Sep 2004 09:06:39 -0700, Kim Forbes wrote:
I am learning Javascript; and most books only give you partial
definitions for the functions they show you. Here is a line of code
from a browser sniffing function:
Browser sniffing? If the book burns, it may
be useful to keep you warm for a few minutes,
otherwise it has no (good) use.

Search the group for 'feature detection'. Once
you have the hang of that, you will no longer
need to worry about what browser your visitors
are using.
var isWin = (navigator.platform.indexOf("Win") !=-1) ? true:false;

What does the -1 stand for.


In the string 'AWindowsPC', 'Win' occurs..
^
0123456789
...at index 1.

In the string 'TheWindow', 'Win' occurs
^
0123456789
...at index 3.

...but in the string "ThisIsAnAppleMacintosh",
'Win' occurs ..nowhere. The function returns
-1 to indicate that 'Win' was *not* contained
in the string "ThisIsAnAppleMacintosh".

( ..but use feature detection, browser sniffing
is pointless, stupid, and leads to fragile code. )

HTH

--
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.lensescapes.com/ Images that escape the mundane
Jul 23 '05 #2
On 17 Sep 2004 09:06:39 -0700, Kim Forbes <ki********@tch.harvard.edu>
wrote:
I am learning Javascript; and most books only give you partial
definitions for the functions they show you. Here is a line of code from
a browser sniffing function:

var isWin = (navigator.platform.indexOf("Win") !=-1) ? true:false;
This could be written as

var isWin = (navigator.platform.indexOf('Win') != -1);

The conditional statement is superfluous as the comparison already
evaluates to a boolean. However, you should avoid this sort of thing (see
below).
What does the -1 stand for.


The String.prototype.indexOf method returns the index of the first
occurance of the supplied string. As in most circumstances, indicies start
at zero (0), so minus one (-1) is used to signify that the substring
couldn't be found.

It's important that you ignore anything regarding browser sniffing. It's a
flawed technique that often results in scripts that break with unknown
user agents, or those that spoof themselves as other browsers. Instead,
you should learn about feature detection. See:

<URL:http://jibbering.com/faq/#FAQ4_26>

and its links.

Mike

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
Jul 23 '05 #3
Kim Forbes wrote:
I am learning Javascript; and most books only give you partial
definitions for the functions they show you. Here is a line of code
from a browser sniffing function:

var isWin = (navigator.platform.indexOf("Win") !=-1) ? true:false;

What does the -1 stand for.

Excuse me for such a basic question, but I can't find the answer
anyway.

Thanks


You will only learn if you ask.

isWin is a boolean with values only true or false.

The above is a short way to write an if, else statement.

The -1 means that the String "Win" is not present in the String returned
by navigator.platform If it was the value would have been the first
occurence of the "W" in "Win" starting to count from 0 in the String
returned by navigator.platform. This short statement tests if the user
uses any variant of Windows, in itself a bad thing to do. The
intelligent user uses Linux, or maybe even a Mac.

If you want to I can rewrite that into the mentioned if, else statement
which is more easily understandable.

Chris

Jul 23 '05 #4
Antonie C Malan Snr <ma*******@optusnet.com.au> wrote in message news:<41***********************@news.optusnet.com. au>...
Kim Forbes wrote:
I am learning Javascript; and most books only give you partial
definitions for the functions they show you. Here is a line of code
from a browser sniffing function:

var isWin = (navigator.platform.indexOf("Win") !=-1) ? true:false;

What does the -1 stand for.

Excuse me for such a basic question, but I can't find the answer
anyway.

Thanks


You will only learn if you ask.

isWin is a boolean with values only true or false.

The above is a short way to write an if, else statement.

The -1 means that the String "Win" is not present in the String returned
by navigator.platform If it was the value would have been the first
occurence of the "W" in "Win" starting to count from 0 in the String
returned by navigator.platform. This short statement tests if the user
uses any variant of Windows, in itself a bad thing to do. The
intelligent user uses Linux, or maybe even a Mac.

If you want to I can rewrite that into the mentioned if, else statement
which is more easily understandable.

Chris


Thanks for the answer. Actually, what I would like is a good reference
book where I can learn Javascript inside out. I took a class about a
year ago, but it didn't help me like I wanted. I found many mistakes
in the textbook, and it wasn't as comprehensive as I wanted. What I
want to know is what every line in the code I'm writing means, and why
am I writing that way. As it is now, I can generally write enough code
to get it to do what I want; but I'm not sure why it works like it
does. I'm just parrotting what I learned.
Jul 23 '05 #5
Andrew Thompson <Se********@www.invalid> wrote in message news:<14******************************@40tude.net> ...
On 17 Sep 2004 09:06:39 -0700, Kim Forbes wrote:
I am learning Javascript; and most books only give you partial
definitions for the functions they show you. Here is a line of code
from a browser sniffing function:


Browser sniffing? If the book burns, it may
be useful to keep you warm for a few minutes,
otherwise it has no (good) use.

Search the group for 'feature detection'. Once
you have the hang of that, you will no longer
need to worry about what browser your visitors
are using.
var isWin = (navigator.platform.indexOf("Win") !=-1) ? true:false;

What does the -1 stand for.


In the string 'AWindowsPC', 'Win' occurs..
^
0123456789
..at index 1.

In the string 'TheWindow', 'Win' occurs
^
0123456789
..at index 3.

..but in the string "ThisIsAnAppleMacintosh",
'Win' occurs ..nowhere. The function returns
-1 to indicate that 'Win' was *not* contained
in the string "ThisIsAnAppleMacintosh".

( ..but use feature detection, browser sniffing
is pointless, stupid, and leads to fragile code. )

HTH


Thanks so much. That was exactly what I wanted to know. I started
checking out feature detection, it seems that once I figure it out, it
will be a lot easier to write and implement.

Thanks again.
Jul 23 '05 #6
"Michael Winter" <M.******@blueyonder.co.invalid> wrote in message news:<opsehcj7hnx13kvk@atlantis>...
On 17 Sep 2004 09:06:39 -0700, Kim Forbes <ki********@tch.harvard.edu>
wrote:
I am learning Javascript; and most books only give you partial
definitions for the functions they show you. Here is a line of code from
a browser sniffing function:

var isWin = (navigator.platform.indexOf("Win") !=-1) ? true:false;


This could be written as

var isWin = (navigator.platform.indexOf('Win') != -1);

The conditional statement is superfluous as the comparison already
evaluates to a boolean. However, you should avoid this sort of thing (see
below).
What does the -1 stand for.


The String.prototype.indexOf method returns the index of the first
occurance of the supplied string. As in most circumstances, indicies start
at zero (0), so minus one (-1) is used to signify that the substring
couldn't be found.

It's important that you ignore anything regarding browser sniffing. It's a
flawed technique that often results in scripts that break with unknown
user agents, or those that spoof themselves as other browsers. Instead,
you should learn about feature detection. See:

<URL:http://jibbering.com/faq/#FAQ4_26>

and its links.

Mike


Mike,
I've bookmarked the URL. Thanks.
Jul 23 '05 #7
In article <de**************************@posting.google.com >,
ki********@tch.harvard.edu (Kim Forbes) wrote:
Thanks for the answer. Actually, what I would like is a good reference
book where I can learn Javascript inside out.


This group recommends javascript: The Definitive Guide by David
Flanagan.

Robert
Jul 23 '05 #8
JRS: In article <rc*****************************@news2.west.earthl ink.n
et>, dated Mon, 20 Sep 2004 19:08:11, seen in news:comp.lang.javascript,
Robert <rc*******@my-deja.com> posted :
In article <de**************************@posting.google.com >,
ki********@tch.harvard.edu (Kim Forbes) wrote:
Thanks for the answer. Actually, what I would like is a good reference
book where I can learn Javascript inside out.


This group recommends javascript: The Definitive Guide by David
Flanagan.


AIUI, this group merely considers it to be the best available book.
That is not the same as saying that it will enable one to "learn
Javascript inside out". For that, one should read ECMA-262, and make
all possible deductions from it. One will, also, need to learn about
DOMs.
Learning Javascript inside out can only be possible using multiple
sources of information, and much practice.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Jul 23 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

125
14538
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from...
3
29660
by: Jukka K. Korpela | last post by:
I have noticed that the meaning of visibility: collapse has been discussed on different forums, but with no consensus on what it really means. Besides, implementations differ. The specification...
86
7679
by: Michael Kalina | last post by:
Because when I asked for comments on my site-design (Remember? My site, your opinion!) some of you told me never to change anything on font-sizes! What do you guys think of that:...
44
4122
by: lester | last post by:
a pre-beginner's question: what is the pros and cons of .net, compared to ++ I am wondering what can I get if I continue to learn C# after I have learned C --> C++ --> C# ?? I think there...
2
10196
by: Steve Richter | last post by:
What does the "." mean in the following sql script stmts? use GO if exists (select * from dbo.sysobjects where id = object_id(N'.') and OBJECTPROPERTY(id,N'IsUserTable') = 1) drop table ....
121
9903
by: typingcat | last post by:
First of all, I'm an Asian and I need to input Japanese, Korean and so on. I've tried many PHP IDEs today, but almost non of them supported Unicode (UTF-8) file. I've found that the only Unicode...
51
4451
by: jacob navia | last post by:
I would like to add at the beginning of the C tutorial I am writing a short blurb about what "types" are. I came up with the following text. Please can you comment? Did I miss something? Is...
1
8727
by: Frank Rizzo | last post by:
Some of the classes in the framework are marked as thread-safe in the documentation. In particular the docs say the following: "Any public static (*Shared* in Visual Basic) members of this type...
13
4997
by: Jason Huang | last post by:
Hi, Would someone explain the following coding more detail for me? What's the ( ) for? CurrentText = (TextBox)e.Item.Cells.Controls; Thanks. Jason
9
550
by: JoeC | last post by:
m_iWidth = (int)pBitmapInfo->bmiHeader.biWidth; m_iHeight = (int)pBitmapInfo->bmiHeader.biHeight; What does this mean? I have seen v=&var->member.thing; but what does it mean when you...
0
7063
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7258
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7441
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5558
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4663
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3156
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3146
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
720
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
366
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.