standard

How many header files are there in c++ standard?

In C89 there're 15 header files: <assert.h> <locale.h> <stddef.h> <ctype.h> <math.h> <stdio.h> <errno.h> <setjmp.h> <stdlib.h> <float.h> <signal.h> <string.h> <limits.h> <stdarg.h> <time.h> What about the c++ standard? ...

What programming language would James Bond have programmed in?

Until the recent Bond movies James preferred British made gadgets. The classic for me is from "You Only Live Twice", as there is real British gyro-copter nicknamed Little Nellie which (in the movie) shipped in 4 suitcases. In the action scenes Little Nellie took on several helicopters. This nifty British made gadget got me wondering ...

Multiple assignment in javascript?

For a project a developer sent us a .js file with code similar to this: var myList = [1,2,3]; var a,b,c; [a,b,c] = myList; It works in Opera 10.30, Firefox 3.6.x but it's not ok for Opera 10.60 and Chrome. It's just curiosity, do you have any reference or link that says this code is compliant to JS/ECMA standard or not? What do yo...