This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const data = [ | |
{ | |
firstName: "Clare", | |
lastName: "Winters", | |
department: "Accounting", | |
iban: "IL02 4221 4105 8544 0188 471", | |
salary: "$2000", | |
payInsurance: false, | |
}, | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ConsoleApplication3.cpp : Defines the entry point for the console application. | |
// | |
#include "stdafx.h" | |
#include <cstdlib> | |
#include <iostream> | |
using namespace std; | |
class Tablica { |