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 8 1672
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
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.
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
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.
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.
"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.
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
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. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
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...
|
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...
|
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:...
|
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...
|
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 ....
|
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...
|
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...
|
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...
|
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
|
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...
|
by: Rina0 |
last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |